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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2d5a3d;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-nav.active {
    display: flex;
}

.main-nav a {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5a3d;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2d5a3d;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 14px 32px;
    border: 2px solid #2d5a3d;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #2d5a3d;
    color: #fff;
}

/* Sections */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle,
.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.alt-section {
    background-color: #f8f9fa;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 12px;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* Collection Showcase */
.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.collection-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.collection-visual {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.collection-card h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 12px;
}

.collection-card p {
    color: #666;
    line-height: 1.7;
}

/* Brand Philosophy */
.brand-philosophy {
    background-color: #f8f9fa;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Statistics */
.statistics {
    background-color: #2d5a3d;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    position: relative;
    padding-left: 70px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: #2d5a3d;
    opacity: 0.2;
}

.process-step h3 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #2d5a3d;
    font-weight: 600;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #2d5a3d;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #2d5a3d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Services Page */
.services-intro {
    background-color: #f8f9fa;
    padding: 40px 20px;
}

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

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.collection-description {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 10px auto 40px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-visual {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 12px;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h2 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-card a {
    color: #2d5a3d;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* About Page */
.story-section {
    padding: 60px 20px;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 30px;
    text-align: left;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-section {
    background-color: #f8f9fa;
}

.mission-content {
    max-width: 900px;
    margin: 30px auto 0;
}

.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.member-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.team-member h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 5px;
}

.member-role {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

.values-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.value-detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.value-detail-card h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 12px;
}

.value-detail-card p {
    color: #666;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 20px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    font-size: 36px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.next-steps {
    background-color: #f8f9fa;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-bottom: 12px;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-card a {
    color: #2d5a3d;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 32px;
    color: #2d5a3d;
    margin-bottom: 10px;
    text-align: left;
}

.last-update {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: #2d5a3d;
    margin-bottom: 15px;
    text-align: left;
}

.legal-section h3 {
    font-size: 20px;
    color: #2d5a3d;
    margin: 20px 0 12px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d5a3d;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5a3d;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #fff;
    color: #2d5a3d;
}

.cookie-accept:hover {
    background-color: #f0f0f0;
}

.cookie-preferences {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-preferences:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    font-size: 24px;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.cookie-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 30px;
    }

    .main-nav a {
        padding: 0;
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .values-grid,
    .collection-showcase,
    .testimonials-grid,
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item,
    .collection-card,
    .testimonial-card,
    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

    .service-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 12.5px);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1 1 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-item {
        flex: 1;
    }

    .collection-showcase {
        flex-wrap: nowrap;
    }

    .collection-card {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .service-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 17px);
    }

    .contact-grid {
        flex-wrap: nowrap;
    }

    .contact-card {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .values-detail-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-detail-card {
        flex: 1 1 calc(50% - 12.5px);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .cookie-modal-buttons {
        flex-direction: row;
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-card {
        flex: 1 1 calc(50% - 12.5px);
    }
}