body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8fdfa;
    line-height: 1.6;
}

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

header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #2c5f2d;
}

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

nav ul li {
    margin-left: 30px;
}

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

nav ul li a:hover {
    color: #2c5f2d;
}

main {
    padding-top: 80px; /* Space for fixed header */
}

section {
    padding: 80px 0;
    text-align: center;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: #2c5f2d;
}

h1 {
    font-size: 3em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.4em;
}

p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.hero {
    background-color: #e8f5e9; /* Soft green */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    color: #2c5f2d;
}

.hero p {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #ff8c00; /* Warm accent */
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.cta-button:hover {
    background-color: #e07b00;
    transform: translateY(-2px);
}

.supporting-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

.problem-section, .how-it-works-section, .what-you-get-section, .benefits-section, .community-section, .testimonials-section, .faq-section, .final-cta-section {
    background-color: #fff;
    margin: 20px auto;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
}

.problem-section h2 {
    color: #2c5f2d;
}

.problem-section p {
    color: #555;
}

.how-it-works-section {
    background-color: #f8fdfa;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card .step-number {
    font-size: 3em;
    font-weight: 700;
    color: #ff8c00;
    opacity: 0.3;
    margin-bottom: 10px;
}

.step-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.step-card p {
    color: #555;
    font-size: 1em;
}

.guide-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.guide-card h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
}

.guide-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-card ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1em;
    padding-left: 20px;
    position: relative;
}

.guide-card ul li::before {
    content: '✔';
    color: #2c5f2d;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.why-it-works-section {
    margin-top: 60px;
    padding: 40px;
    background-color: #e8f5e9;
    border-radius: 15px;
}

.why-it-works-section h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
}

.why-it-works-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-it-works-section ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1em;
    padding-left: 25px;
    position: relative;
}

.why-it-works-section ul li::before {
    content: '•';
    color: #ff8c00;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.5em;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.benefit-card h4 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #555;
    font-size: 1em;
}

.community-section {
    background-color: #e8f5e9;
}

.community-section p {
    color: #333;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.testimonial-card .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial-card .author {
    font-weight: bold;
    color: #2c5f2d;
    text-align: right;
}

.faq-section {
    background-color: #f8fdfa;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-item p {
    color: #555;
    font-size: 1em;
    display: none; /* Initially hidden */
}

.faq-item.open p {
    display: block;
}

.final-cta-section {
    background-color: #fff;
    padding: 80px 20px;
}

.final-cta-section h2 {
    color: #2c5f2d;
}

.final-cta-section p {
    color: #333;
    font-size: 1.2em;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 40px 20px;
    font-size: 0.8em;
    color: #777;
    text-align: center;
}

footer {
    background-color: #2c5f2d;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        display: none; /* Hide nav links by default on mobile, can be toggled with JS */
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    h2 {
        font-size: 2em;
    }

    .step-card, .guide-card, .benefit-card, .testimonial-card {
        width: 90%;
        margin: 15px auto;
    }

    .steps-container, .guide-content, .benefits-container, .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
}