html {
    scroll-behavior: smooth;
}

/* CSS Variables for colors from the image */
:root {
    --bg-color: #F8F9F8;
    --auxiliary-color: #A7D943;
    --main-theme-color: #E0E898;
    --card-color: #FFFFFF;
    --icon-gray-color: #A0A0A0;
    --icon-black-color: #333333;
    --heading-color: #86B33C;
    --text-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

header {
    background-color: var(--card-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--heading-color);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--heading-color);
}

#hero {
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--icon-black-color);
}

.cta-buttons .btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--auxiliary-color);
    color: var(--card-color);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--auxiliary-color);
    border: 2px solid var(--auxiliary-color);
}

.btn-secondary:hover {
    background-color: var(--auxiliary-color);
    color: var(--card-color);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    height: auto;
}

#features {
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.feature-item {
    background-color: var(--card-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--auxiliary-color);
    /* In a real project, this would be an SVG icon */
    background-color: #eaf6d1;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--icon-black-color);
    font-size: 1rem;
    line-height: 1.7;
}

#how-it-works {
    background-color: var(--card-color);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--main-theme-color);
    line-height: 1;
    width: 60px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-top: 0;
    color: var(--icon-black-color);
}

#showcase {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.showcase-image {
    flex: 1;
    text-align: center;
}

.showcase-image img {
    max-width: 400px;
    height: auto;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.showcase-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.showcase-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-text ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.icon-check {
    color: var(--auxiliary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

#cta {
    background-color: var(--main-theme-color);
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

#cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--auxiliary-color);
}


/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 3rem;
    }
    #showcase {
        flex-direction: column;
    }
    .showcase-image {
        order: 1;
        margin-top: 3rem;
    }
    .showcase-text {
        order: 2;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        display: none; /* Simple hiding for small screens, a toggle menu would be better */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    #features h2,
    #how-it-works h2,
    #showcase h2,
    #cta h2 {
        font-size: 2rem;
    }

    footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0 0.5rem;
    }
}
/* Add general styles here */
