/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

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

/* Header */
.header {
    background: #F5F1E8;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F1E8 0%, #e8f5e8 100%);
    padding: 80px 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    background: #7CB342;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #689f38;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.plan-img, .product-img, .recipe-img, .content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Section Styles */
section {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #fafafa;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.feature-card p {
    color: #5a6c7d;
    font-size: 16px;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.plan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.plan-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 24px 24px 16px;
}

.plan-card p {
    color: #5a6c7d;
    margin: 0 24px 20px;
    font-size: 16px;
}

.plan-card ul {
    list-style: none;
    margin: 0 24px 24px;
}

.plan-card li {
    padding: 8px 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 20px;
}

.plan-card li:before {
    content: "✓";
    color: #7CB342;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Clean Eating Section */
.clean-eating {
    background: #fafafa;
    text-align: center;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-split.reverse .content-text {
    order: 2;
}

.content-split.reverse .content-image {
    order: 1;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.eating-principles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.principle h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.principle p {
    color: #5a6c7d;
    font-size: 16px;
    margin: 0;
}

.content-image .image-placeholder {
    height: 400px;
    background: #e0e0e0;
    border-radius: 12px;
}

/* Products Section */
.products {
    background: white;
    text-align: center;
}

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

.product-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 20px 12px;
}

.product-card p {
    color: #5a6c7d;
    margin: 0 20px 16px;
    font-size: 14px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #7CB342;
    margin: 0 20px 20px;
}

.product-button {
    background: #4FC3F7;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background: #29b6f6;
}

/* Recipes Section */
.recipes {
    background: #fafafa;
    text-align: center;
}

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

.recipe-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.recipe-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 20px 12px;
}

.recipe-card p {
    color: #5a6c7d;
    margin: 0 20px 20px;
    font-size: 14px;
}

/* Wellness Tracker */
.wellness-tracker {
    background: white;
    text-align: center;
}

.tracker-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tracker-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #5a6c7d;
}

.feature-bullet {
    color: #7CB342;
    font-size: 20px;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background: #fafafa;
    text-align: center;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #7CB342;
    font-size: 14px;
}

/* Contacts */
.contacts {
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fafafa;
    border-radius: 12px;
}

.contact-icon {
    font-size: 32px;
    line-height: 1;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-details p {
    color: #5a6c7d;
    font-size: 16px;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 600;
}

.footer-brand-content p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #7CB342;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7CB342;
}

.submit-button {
    background: #7CB342;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #689f38;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-split.reverse .content-text,
    .content-split.reverse .content-image {
        order: unset;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .plans-grid,
    .products-grid,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px;
        width: 95%;
    }
}