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

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

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4A5568;
}

/* Buttons */
.cta-button, .product-button, .form-submit {
    background: linear-gradient(135deg, #2F5233, #4A5568);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover, .product-button:hover, .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 82, 51, 0.3);
}

.product-button {
    font-size: 1rem;
    padding: 12px 24px;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #E8F5E8, #F0F8F0);
    border: 2px dashed #2F5233;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F5233;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    min-height: 200px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FBFB, #E8F5E8);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    min-height: 70vh;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.brand-name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2F5233;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image .image-placeholder {
    min-height: 400px;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(47, 82, 51, 0.2);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 20px;
}

.impact-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.15);
}

.contact-map-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Introduction Section */
.intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #4A5568;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #F8FBFB;
    text-align: center;
}

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

.feature {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(47, 82, 51, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
}

.feature h3 {
    color: #2F5233;
    margin-bottom: 20px;
}

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

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

.product {
    background: #F8FBFB;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(47, 82, 51, 0.15);
}

.product-image .image-placeholder {
    min-height: 250px;
    border-radius: 0;
    border: none;
}

.product-content {
    padding: 30px;
}

.product h3 {
    color: #2F5233;
    margin-bottom: 15px;
}

.product p {
    margin-bottom: 25px;
}

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

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2F5233, #4A5568);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 30px;
}

.step h3 {
    color: #2F5233;
    margin-bottom: 20px;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: white;
    text-align: center;
}

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

.impact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 500;
}

.impact-image .image-placeholder {
    min-height: 350px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #F8FBFB;
    text-align: center;
}

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

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.1);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #2F5233;
}

.testimonial-author {
    font-weight: 500;
    color: #4A5568;
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F5233, #4A5568);
    color: white;
}

.membership-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.membership h2 {
    color: white;
    margin-bottom: 30px;
}

.membership p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.membership .cta-button {
    background: white;
    color: #2F5233;
}

.membership .cta-button:hover {
    background: #F8FBFB;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #F8FBFB;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h4 {
    color: #2F5233;
    margin-bottom: 10px;
}

.contact-item p {
    color: #4A5568;
    margin-bottom: 0;
}

.contact-map .image-placeholder {
    min-height: 300px;
}

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

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

.footer-brand-section {
    grid-column: 1;
}

.footer-links-section {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-services-section {
    grid-column: 3;
}

.footer-contact-section {
    grid-column: 4;
}

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

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 500;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    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: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

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

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

.order-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #2F5233;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact h2 {
        text-align: center;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .membership-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px;
    }
}