/* Global Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
}

h2 {
    font-size: 2rem;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
}

a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #388E3C;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn.primary {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.btn.primary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
}

.btn.secondary {
    background-color: white;
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn.secondary:hover {
    background-color: #e8f5e9;
    color: #388E3C;
    border-color: #388E3C;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: 1px;
}

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

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

nav ul li a {
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4CAF50;
}

/* Main Content Sections */
main {
    padding: 60px 0;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Hero Section */
.hero {
    background-color: #e8f5e9;
    text-align: center;
    padding: 100px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background-image: none;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 40px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: #f1f8e9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.card h3 {
    margin-top: 0;
    color: #388E3C;
}

/* Popular Plans / Meal Plans Section */
.popular-plans,
.meal-plans {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 40px;
}

.plan-cards,
.plan-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card h3 {
    margin-top: 0;
    color: #2c5f2d;
}

.plan-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.plan-card ul li::before {
    content: '\2022';
    color: #4CAF50;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.plan-card .btn {
    margin-top: auto;
}

.plan-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.plan-features li {
    margin-bottom: 8px;
}

/* How It Works Section */
.how-it-works {
    background-color: #f1f8e9;
    border-radius: 8px;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step .step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c8e6c9;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: #388E3C;
}

/* Trust Section */
.trust-section {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: inline-block;
    text-align: left;
}

.trust-section ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.trust-section ul li::before {
    content: '\2713'; /* Checkmark */
    color: #4CAF50;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    position: absolute;
    left: 0;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-form h2 {
    text-align: left;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #2c5f2d;
    color: white;
    padding: 50px 0 30px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-nav h3,
.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: #a5d6a7;
}

.footer-nav ul,
.footer-contact p {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-contact a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #388E3C;
    font-size: 0.85rem;
    color: #b2ff59;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

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

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

    .hero .cta-buttons,
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 90%;
        margin-bottom: 10px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        margin-bottom: 30px;
    }

    .contact-form-section {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav ul,
    .footer-contact p {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .card, .plan-card {
        padding: 20px;
    }

    .btn {
        padding: 10px 20px;
    }
}