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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1A202C;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #4A6741;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 2rem 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4A6741;
    margin: 0;
}

.brand-tagline {
    font-size: 1rem;
    color: #718096;
    margin: 0;
    font-style: italic;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8DCC0 0%, #F7F5F0 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    color: #4A6741;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero p {
    font-size: 1.25rem;
    color: #2D3748;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #4A6741;
}

.icon {
    flex-shrink: 0;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.about-image-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #F8F9FA;
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #E2E8F0;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #4A6741;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4A5568;
    margin: 0;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-image .image-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F5F0;
    margin: 0;
    border-radius: 0;
}

.product-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-svg-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F5F0;
}

.product-svg-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #4A6741;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.product-info p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4A6741;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: #4A6741;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.btn-primary:hover {
    background-color: #3A5233;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: #F8F9FA;
    text-align: center;
}

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

.benefit {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit h3 {
    color: #4A6741;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit p {
    color: #4A5568;
    margin: 0;
}

/* Resources Section */
.resources {
    padding: 5rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.resources-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.resource-text h3 {
    color: #4A6741;
    margin-bottom: 1rem;
}

.resource-text p {
    color: #4A5568;
    margin-bottom: 1.5rem;
}

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

.resource-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4A5568;
}

.resource-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A6741;
    font-weight: 600;
}

.resource-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #F8F9FA;
    text-align: center;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.testimonial p {
    font-style: italic;
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #4A6741;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    space-y: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #4A6741;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

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

.map-placeholder {
    height: 400px;
    background-color: #F7FAFC;
    border: 2px dashed #CBD5E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-style: italic;
    border-radius: 8px;
}

.contact-map-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Footer */
.footer {
    background-color: #4A6741;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand .logo-section {
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand .logo-section h3 {
    color: #E8DCC0;
    margin: 0;
    font-size: 1.25rem;
}

.footer-brand .logo-section p {
    color: #CBD5E0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    color: #E8DCC0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #E8DCC0;
}

.footer-contact p {
    color: #CBD5E0;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #5A7F50;
    padding-top: 1rem;
    text-align: center;
}

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


/* New Footer Styles */
.new-footer {
    background-color: #4A6741;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.new-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.new-footer-brand .logo-section {
    align-items: flex-start;
    gap: 1rem;
}

.new-footer-brand .logo-section h3 {
    color: #E8DCC0;
    margin: 0;
    font-size: 1.25rem;
}

.new-footer-brand .logo-section p {
    color: #CBD5E0;
    margin: 0;
    font-size: 0.9rem;
}

.new-footer-links h3 {
    color: #E8DCC0;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.new-footer-links ul {
    list-style: none;
    padding: 0;
}

.new-footer-links li {
    margin-bottom: 0.5rem;
}

.new-footer-links a {
    color: #F7FAFC;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.new-footer-links a:hover {
    color: #E8DCC0;
    text-decoration: underline;
}

.new-footer-contact h3 {
    color: #E8DCC0;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.new-footer-contact p {
    color: #CBD5E0;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.new-footer-bottom {
    border-top: 1px solid #5A7F50;
    padding-top: 1rem;
    text-align: center;
}

.new-footer-bottom p {
    color: #CBD5E0;
    margin: 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .new-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .new-footer-brand .logo-section {
        justify-content: center;
        align-items: center;
    }
}
/* Modal */
.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: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #718096;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #4A6741;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4A6741;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CBD5E0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A6741;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .about-content,
    .contact-content,
    .resources-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-photo,
    .resource-photo,
    .resource-svg-container {
        height: 200px;
    }
    
    .contact-map-photo,
    .contact-svg-container {
        height: 250px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand .logo-section {
        justify-content: center;
        align-items: center;
    }
}