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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

ul {
    list-style: none;
}

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

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

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    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;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: #333;
}

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

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a3a1b;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2c5f2d;
    color: #2c5f2d;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f2e8 100%);
}

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

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
    background-color: #f5f9f5;
    text-align: center;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #666;
}

/* Sections */
section {
    padding: 4rem 0;
}

.alt-bg {
    background-color: #f9f9f9;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.125rem;
    color: #555;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Intro Section */
.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-visual svg {
    max-width: 400px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    background-color: #f9f9f9;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Products Grid */
.products-grid, .service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-highlight, .service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.product-highlight:hover, .service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-highlight h3, .service-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.price, .service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 1rem;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #97c59f;
}

.step h3 {
    color: #2c5f2d;
}

/* Stats Section */
.stats-section {
    background-color: #2c5f2d;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #97c59f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2c5f2d;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f2d;
}

/* Expertise Section */
.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.expertise-item h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.industry-card h3 {
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #2c5f2d;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    max-height: 500px;
    padding-top: 1rem;
}

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

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-content h2 {
    margin-bottom: 1.5rem;
}

.mission-visual svg {
    max-width: 400px;
    margin: 0 auto;
}

/* Principles Section */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
}

.principle h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
}

.team-member h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Approach Steps */
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-step {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
}

.approach-step h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Commitment Section */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
}

.benefit-item h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Process Info */
.process-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
}

.process-item h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #666;
    margin-top: 0.5rem;
}

.info-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Hours Section */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-table {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

/* Thank You Section */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Next Steps */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #97c59f;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

/* Info Grid */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Legal Content */
.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2c5f2d;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #97c59f;
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #ccc;
}

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

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

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

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

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

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    font-size: 0.9375rem;
    color: #666;
    margin-top: 0.5rem;
    margin-left: 1.75rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

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

    .intro-grid, .mission-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .intro-text, .mission-content {
        flex: 1;
    }

    .intro-visual, .mission-visual {
        flex: 1;
    }

    .values-grid, .industries-grid, .team-grid, .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card, .industry-card, .team-member, .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .product-highlight, .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .stat {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-details {
        flex: 1.5;
    }

    .contact-additional {
        flex: 1;
    }

    .hours-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hours-info {
        flex: 1;
    }

    .hours-table {
        flex: 1;
    }

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

    .steps-grid, .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item, .info-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

    .modal-actions {
        flex-direction: row;
    }

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

    .footer-section {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .value-card, .benefit-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .product-highlight, .service-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .step {
        flex: 1 1 calc(50% - 1rem);
    }
}