/* ===========================
   CSS Reset & 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: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #1f5a39;
}

ul {
    list-style: none;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a2f23;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: #4a5568;
}

/* ===========================
   Layout
   =========================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================
   Header & Navigation
   =========================== */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.logo:hover {
    color: #1f5a39;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f0f7f4;
    color: #2d7a4f;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 2rem;
    height: 0.2rem;
    background-color: #2d7a4f;
    transition: all 0.3s ease;
}

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

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

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

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
        color: #2d7a4f;
        border-bottom: 2px solid #2d7a4f;
    }
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f5a39;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2d7a4f;
    border-color: #2d7a4f;
}

.btn-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2f23;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ===========================
   Page Hero (Subpages)
   =========================== */

.page-hero {
    background-color: #f0f7f4;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

/* ===========================
   Sections
   =========================== */

section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro-text {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* ===========================
   Grid Layouts
   =========================== */

.values-grid,
.experiences-grid,
.benefits-grid,
.services-grid,
.team-grid,
.partnerships-grid,
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid,
    .experiences-grid,
    .benefits-grid,
    .partnerships-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .values-grid > *,
    .benefits-grid > * {
        flex: 0 0 calc(50% - 1rem);
    }

    .experiences-grid > *,
    .partnerships-grid > * {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .values-grid > * {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .experiences-grid > *,
    .partnerships-grid > * {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

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

    .team-grid > * {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* ===========================
   Cards
   =========================== */

.value-card,
.experience-card,
.benefit-item,
.service-card,
.partnership-card,
.team-member,
.contact-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover,
.experience-card:hover,
.service-card:hover,
.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: #2d7a4f;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.experience-badge {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2d7a4f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.team-role {
    color: #2d7a4f;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===========================
   Services Page
   =========================== */

.services-intro {
    background-color: #f9fafb;
    padding: 2rem 0;
}

.service-card {
    background-color: #ffffff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2,
.service-header h3 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a4f;
    white-space: nowrap;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: bold;
}

/* ===========================
   Statistics
   =========================== */

.statistics {
    background-color: #2d7a4f;
    color: #ffffff;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #c8e6c9;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .stat-item {
        flex: 0 0 calc(25% - 1rem);
    }
}

/* ===========================
   Process Steps
   =========================== */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

/* ===========================
   Testimonials
   =========================== */

.testimonials {
    background-color: #f9fafb;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a4f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

@media (min-width: 1024px) {
    .testimonial {
        flex: 0 0 calc(33.333% - 1.34rem);
    }
}

/* ===========================
   Timeline
   =========================== */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a4f;
    width: 6rem;
}

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

/* ===========================
   FAQ
   =========================== */

.faq-section {
    background-color: #f9fafb;
}

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

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

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

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #2d7a4f;
    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 p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

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

/* ===========================
   Comparison Table
   =========================== */

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.comparison-label {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem;
    font-weight: 600;
}

.comparison-sustainable,
.comparison-conventional {
    padding: 1rem;
}

.comparison-sustainable {
    background-color: #e8f5e9;
}

.comparison-conventional {
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .comparison-row {
        flex-direction: row;
    }

    .comparison-label {
        flex: 0 0 20%;
    }

    .comparison-sustainable,
    .comparison-conventional {
        flex: 0 0 40%;
    }
}

/* ===========================
   Booking Steps
   =========================== */

.booking-steps {
    max-width: 800px;
    margin: 0 auto;
    counter-reset: step-counter;
    list-style: none;
}

.booking-steps li {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
    counter-increment: step-counter;
}

.booking-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.booking-steps h3 {
    margin-bottom: 0.5rem;
}

/* ===========================
   CTA Section
   =========================== */

.cta-section {
    background: linear-gradient(135deg, #2d7a4f 0%, #1f5a39 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #e8f5e9;
}

/* ===========================
   Contact Page
   =========================== */

.contact-info {
    background-color: #f9fafb;
}

.contact-grid {
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d7a4f;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item h3 {
    color: #2d7a4f;
    margin-bottom: 0.5rem;
}

/* ===========================
   Legal Pages
   =========================== */

.legal-page {
    background-color: #ffffff;
    padding: 3rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #718096;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d7a4f;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookie-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.cookie-table-row {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 4px;
}

.cookie-table-row:first-child {
    background-color: #2d7a4f;
    color: #ffffff;
    font-weight: 600;
}

@media (min-width: 768px) {
    .cookie-table-row {
        flex-direction: row;
        gap: 1rem;
    }

    .cookie-name {
        flex: 0 0 25%;
    }

    .cookie-purpose {
        flex: 0 0 35%;
    }

    .cookie-duration {
        flex: 0 0 20%;
    }

    .cookie-type {
        flex: 0 0 20%;
    }
}

.mission-list,
.commitment-list {
    list-style: none;
    margin-left: 0;
}

.mission-list li,
.commitment-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.mission-list li::before,
.commitment-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: bold;
}

/* ===========================
   Thank You Page
   =========================== */

.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-info,
.thank-you-actions,
.thank-you-contact {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
    counter-increment: step-counter;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .action-links {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: #1a2f23;
    color: #e8f5e9;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d7a4f;
    color: #c8e6c9;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

/* ===========================
   Cookie Banner
   =========================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2f23;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* ===========================
   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.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-options {
    margin-bottom: 2rem;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* ===========================
   Utility Classes
   =========================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===========================
   Responsive Typography
   =========================== */

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

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

/* ===========================
   Accessibility
   =========================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus,
button:focus {
    outline: 2px solid #2d7a4f;
    outline-offset: 2px;
}

/* ===========================
   Content Sections
   =========================== */

.company-story,
.content-section,
.philosophy-section,
.mission-section,
.commitment-section,
.location-section,
.company-info-section,
.team-availability,
.newsletter-section {
    padding: 3rem 0;
}

.story-content,
.content-block,
.philosophy-content,
.mission-content,
.commitment-content,
.location-content,
.company-info-content,
.team-availability-content,
.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
}

.impact-section,
.values-detail-section,
.milestones-section,
.partnerships-section {
    background-color: #f9fafb;
}

.values-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-detail-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .values-detail {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-detail-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

.mission-statement {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d7a4f;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-member-contact {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.team-member-contact .role {
    color: #2d7a4f;
    font-weight: 600;
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
}

.location-description {
    margin-bottom: 2rem;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .impact-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .impact-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .impact-item {
        flex: 0 0 calc(33.333% - 1.34rem);
    }
}