body {
    font-family: 'Google Sans Flex', system-ui, -apple-system, sans-serif;
    margin: 0;
    background-color: #F9F9F7;
    color: #343331;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-color: #F0EFEF;
}

.hero .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero .logo img {
    width: 64px;
    height: 64px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    color: #8C6F61;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #6B6A68;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: #8C6F61;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #7a5f53;
}

.hero-image {
    margin-top: 40px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 60px 0;
    text-align: center;
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.feature-item .icon {
    font-size: 2.5rem;
    color: #8C6F61;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: #F0EFEF;
    text-align: center;
}

.how-it-works h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.how-it-works p {
    color: #6B6A68;
    max-width: 800px;
    margin: 0 auto 30px;
}

.how-image {
    max-width: 70%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    background-color: #EAE9E7;
    color: #6B6A68;
    font-size: 0.9rem;
}

footer a {
    color: #8C6F61;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
