       CSS VARIABLES & GLOBAL RESETS
       ============================================ */
    :root {
        --color-green-primary: #014921;
        --color-green-light: #4a7c59;
        --color-green-dark: #013619;
        --color-sunbleached: #F5F2E8;
        --color-soil: #2B2821;
        --color-mesquite: #74685D;

        --space-xs: 8px;
        --space-sm: 16px;
        --space-md: 24px;
        --space-lg: 32px;
        --space-xl: 48px;
        --space-2xl: 64px;
        --space-3xl: 96px;

        --transition-base: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    /* Remove background from headings */
    h2, .section-title, .heading-2 {
        background: none !important;
        background-image: none !important;
        background-color: transparent !important;
    }

    /* ============================================
       HERO SUBTITLE & VALUE CHECK STYLES
       ============================================ */
    .hero-subtitle-text {
        font-size: 24px;
        line-height: 1.4;
        color: #000000;
        margin-top: 12px;
        margin-bottom: 24px;
        font-weight: 400;
        font-style: italic;
    }

    /* Note: .hero-value-check styles now in shared-hero-sections.css */

    @media (max-width: 768px) {
        .hero-subtitle-text {
            font-size: 18px;
            margin-top: 8px;
            margin-bottom: 20px;
        }
    }

    /* ============================================
       VALUE BAR STYLES
       ============================================ */
    .trust-bar-section-green {
        background: var(--color-green-primary);
        padding: 60px 0;
    }

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

    .trust-quote {
        color: #ffffff;
        position: relative;
        display: flex;
        gap: 20px;
        align-items: flex-start;
        max-width: 600px;
    }

    .trust-quote::before {
        content: '"';
        font-size: 120px;
        line-height: 0.8;
        color: rgba(144, 238, 144, 0.5);
        font-family: 'Monument Grotesk', sans-serif;
        font-weight: 600;
        flex-shrink: 0;
        margin-top: -10px;
    }

    .trust-quote blockquote {
        margin: 0;
        padding: 0;
        flex: 1;
    }

    .trust-quote blockquote p {
        font-size: 32px;
        line-height: 1.5;
        color: #ffffff !important;
        margin: 0 0 16px 0;
        font-weight: 600;
    }

    .trust-quote blockquote cite,
    .testimonial-author {
        display: block;
        font-size: 15px;
        font-style: normal;
        opacity: 0.9;
        color: #ffffff;
        font-weight: 500;
    }

    .trust-stats {
        display: flex;
        gap: 40px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .stat-number {
        display: block;
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-label {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        line-height: 1.3;
    }

    /* ============================================
       BUTTON STYLES - Scoped to testimonials section only
       ============================================ */
    /* Testimonial button specific styles */
    .section-testimonials .buttons .btn-green-accent {
        color: #ffffff !important;
    }

    .section-testimonials .buttons .btn-green-accent:hover {
        color: #ffffff !important;
    }

    .section-testimonials .buttons .btn-green-accent .btn-text {
        color: #ffffff !important;
    }

    /* ============================================
       TEAM SECTION
       ============================================ */
    .team-header-section {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
    }

    .team-header-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .team-badge,
    .team-pretitle {
        display: inline-block;
        background: rgba(1, 73, 33, 0.1);
        color: #014921;
        padding: 12px 24px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 24px;
        border: 2px solid #014921;
        transition: all 0.3s ease;
        font-family: 'Monument Grotesk', sans-serif;
    }

    .team-main-heading {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 16px;
        color: #192615;
        font-weight: 400;
        text-align: center;
    }

    .team-subtitle {
        font-size: 20px;
        line-height: 1.4;
        color: #5a6c57;
        text-align: center;
        margin-bottom: 24px;
        font-weight: 400;
    }

    .team-description {
        font-size: 18px;
        line-height: 1.6;
        color: #4a5545;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .centered-team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 60px;
        max-width: 100%;
        width: 100%;
    }

    .centered-team-grid .enhanced-team-item {
        width: 100%;
        max-width: none;
    }

    .enhanced-team-item {
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .enhanced-team-item:hover {
        transform: translateY(-4px);
        border-color: #014921;
        box-shadow: 0 8px 24px rgba(1, 73, 33, 0.12);
        text-decoration: none;
    }

    .team-photo {
        position: relative;
        overflow: hidden;
    }

    .photo-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        overflow: hidden;
    }

    .photo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .enhanced-team-item:hover .photo-wrapper img {
        transform: scale(1.05);
    }

    .photo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(45, 90, 39, 0.8) 100%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .enhanced-team-item:hover .photo-overlay {
        opacity: 1;
    }

    /* CTA Card Styling */
    .team-cta-card {
        background: white;
        border: 2px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 350px;
        padding: 30px;
    }

    .team-cta-card:hover {
        border-color: #014921;
        background: #f0f9f4;
    }

    .team-cta-content {
        text-align: left;
        width: 100%;
    }

    .team-cta-title-new {
        font-family: 'Recoleta', serif;
        font-size: 32px;
        font-weight: 700;
        color: #014921;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .team-cta-description {
        font-size: 16px;
        line-height: 1.6;
        color: #4a5545;
        margin: 0 0 24px 0;
    }

    .team-cta-link-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
    }

    .team-cta-link-text {
        font-size: 16px;
        font-weight: 600;
        color: #014921;
        text-decoration: none;
    }

    .team-cta-arrow {
        color: #014921;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .team-cta-card:hover .team-cta-arrow {
        transform: translateX(4px);
    }

    .team-cta-card:hover .team-cta-link-text {
        text-decoration: underline;
    }

    .view-profile {
        color: white;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 16px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }

    .team-content {
        padding: 30px 20px;
        background: white;
    }

    .member-name {
        font-size: 24px;
        font-weight: 600;
        color: #192615;
        margin-bottom: 8px;
    }

    .member-position {
        font-size: 16px;
        color: #1f5623;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    .member-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f8faf9;
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        z-index: 10;
    }

    .social-link:hover {
        background: var(--color-green-primary);
        transform: translateY(-2px);
    }

    .social-link img {
        width: 18px;
        height: 18px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .social-link:hover img {
        opacity: 1;
        filter: brightness(0) invert(1);
    }

    /* ============================================
       RESPONSIVE DESIGN
       ============================================ */
    @media (max-width: 1024px) {
        .trust-bar-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .trust-stats {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .trust-bar-section-green {
            padding: 40px 0;
        }

        .trust-quote blockquote p {
            font-size: 26px;
        }

        .trust-stats {
            flex-direction: column;
            gap: 20px;
        }

        .stat-number {
            font-size: 36px;
        }

        .team-main-heading {
            font-size: 32px;
        }

        .team-subtitle {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .centered-team-grid .enhanced-team-item {
            flex: none;
            width: 100%;
            max-width: 350px;
        }

        .team-cta-card {
            padding: 24px;
            min-height: 300px;
        }

        .team-cta-title-new {
            font-size: 28px;
        }

        .team-cta-description {
            font-size: 15px;
            margin-bottom: 20px;
        }

        .team-cta-link-text {
            font-size: 15px;
        }

        .photo-wrapper {
            height: 300px;
        }
    }

    @media (max-width: 480px) {
        .trust-quote blockquote p {
            font-size: 22px;
        }

        .stat-number {
            font-size: 28px;
        }

        .photo-wrapper {
            height: 280px;
        }

        .btn-green-accent {
            padding: 12px 24px;
            font-size: 15px;
        }
    }

    /* ============================================
       MISSION RESEARCH/CTA SECTION
       ============================================ */
    .mission-research-pill {
        background: #f9e5a8;
        border-radius: 24px;
        padding: 60px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        width: 100%;
        box-sizing: border-box;
    }

    .mission-research-content {
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 80px;
        align-items: flex-start;
        width: 100%;
    }

    .mission-research-text {
        min-width: 0;
    }

    .mission-research-info {
        min-width: 0;
    }

    .mission-research-label {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        color: #014921;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .mission-research-title {
        font-family: 'Recoleta', serif;
        font-size: 56px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.1;
        margin-bottom: 32px;
    }

    .mission-research-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-mission-primary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background: #014921;
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-mission-primary:hover {
        background: #2d5a27;
        color: white;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .btn-mission-secondary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background: transparent;
        color: #014921;
        border: 2px solid #014921;
        text-decoration: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-mission-secondary:hover {
        background: #014921;
        color: white;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .mission-research-headline {
        font-size: 24px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .mission-research-headline em {
        font-style: italic;
    }

    .mission-research-description {
        font-size: 18px;
        line-height: 1.7;
        color: #4a5545;
        margin-bottom: 32px;
    }

    /* Glass Frame with Values Matrix */
    .mission-values-glass-frame {
        margin-top: 60px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 24px;
        padding: 40px 60px 60px 60px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    .mission-values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mission-value-card {
        background: white;
        border: 1px solid rgba(1, 73, 33, 0.15);
        border-radius: 12px;
        padding: 24px;
        transition: all 0.3s ease;
    }

    .mission-value-card:hover {
        border-color: #014921;
        box-shadow: 0 4px 12px rgba(1, 73, 33, 0.12);
        transform: translateY(-2px);
    }

    .mission-value-title {
        font-family: 'Recoleta', serif;
        font-size: 20px;
        font-weight: 600;
        color: #014921;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .mission-value-description {
        font-size: 15px;
        line-height: 1.6;
        color: #4a5545;
        margin: 0;
    }

    .mission-logo-scroller {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 45px;
        mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }

    .mission-logo-track {
        display: flex;
        align-items: center;
        gap: 50px;
        height: 45px;
        width: fit-content;
        animation: scroll-mission-logos 20s linear infinite;
        will-change: transform;
    }

    .mission-logo-track:hover {
        animation-play-state: paused;
    }

    .mission-logo-item {
        flex-shrink: 0;
        height: 55px;
        display: flex;
        align-items: center;
    }

    .mission-logo-item img {
        height: 55px;
        width: auto;
        max-height: 55px;
        max-width: 200px;
        object-fit: contain;
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }

    .mission-logo-item:hover img {
        opacity: 1;
    }

    @keyframes scroll-mission-logos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 992px) {
        .mission-research-pill {
            padding: 40px;
        }

        .mission-research-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .mission-research-title {
            font-size: 42px;
        }

        .mission-values-glass-frame {
            padding: 32px 40px 40px 40px;
        }

        .mission-values-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .mission-research-pill {
            padding: 32px 24px;
        }

        .mission-research-title {
            font-size: 36px;
        }

        .mission-research-headline {
            font-size: 20px;
        }

        .mission-research-buttons {
            flex-direction: column;
        }

        .btn-mission-primary,
        .btn-mission-secondary {
            width: 100%;
            justify-content: center;
        }

        .mission-values-glass-frame {
            padding: 24px;
            margin-top: 0;
        }

        .mission-value-card {
            padding: 20px;
        }

        .mission-value-title {
            font-size: 18px;
        }

        .mission-value-description {
            font-size: 14px;
        }
    }

    /* ============================================
       ARTICLES SLIDER SECTION
       ============================================ */
    .articles-header-section {
        text-align: center;
        margin-bottom: 48px;
    }

    .articles-slider-title {
        font-family: 'Recoleta', serif;
        font-size: 36px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 12px;
    }

    .articles-slider-subtitle {
        font-size: 18px;
        font-style: italic;
        color: #4a5545;
        margin: 0;
    }

    .articles-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .articles-slider-container {
        overflow: hidden;
        flex: 1;
    }

    .articles-slider-track {
        display: flex;
        gap: 24px;
        transition: transform 0.4s ease;
    }

    .article-slider-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }

    .article-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .article-card-link:hover {
        border-color: #014921;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(1, 73, 33, 0.12);
        text-decoration: none;
    }

    .article-card-image {
        width: 100%;
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .article-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .article-card-link:hover .article-card-image img {
        transform: scale(1.05);
    }

    .article-card-content {
        padding: 28px;
    }

    .article-card-meta {
        margin-bottom: 12px;
    }

    .article-card-category {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        color: #014921;
        background: rgba(1, 73, 33, 0.1);
        padding: 4px 12px;
        border-radius: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .article-card-title {
        font-family: 'Recoleta', serif;
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.5;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 60px;
    }

    .article-card-stats {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .article-stat {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: #6b7280;
    }

    .article-stat svg {
        color: #9ca3af;
        flex-shrink: 0;
    }

    .articles-slider-arrow {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid #e5e7eb;
        background: white;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .articles-slider-arrow:hover {
        border-color: #014921;
        color: #014921;
        background: #f0f9f4;
    }

    .articles-slider-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    @media (max-width: 992px) {
        .article-slider-card {
            flex: 0 0 calc(50% - 12px);
            min-width: calc(50% - 12px);
        }
    }

    @media (max-width: 768px) {
        .articles-slider-title {
            font-size: 28px;
            margin-bottom: 32px;
        }

        .article-slider-card {
            flex: 0 0 100%;
            min-width: 100%;
        }

        .articles-slider-arrow {
            width: 40px;
            height: 40px;
        }
    }

    /* ============================================
       MODERN FAQ SECTION
       ============================================ */
    .faq-modern-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .faq-modern-title {
        font-family: 'Recoleta', serif;
        font-size: 42px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .faq-modern-subtitle {
        font-size: 18px;
        font-style: italic;
        color: #4a5545;
        margin: 0;
    }

    .faq-modern-list {
        max-width: 800px;
        margin: 0 auto 40px auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-modern-item {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-modern-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 28px;
        background: white;
        border: none;
        text-align: left;
        font-size: 18px;
        font-weight: 500;
        color: #1a1a1a;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-modern-question:hover {
        color: #014921;
    }

    .faq-modern-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a1a1a;
        transition: transform 0.3s ease, color 0.3s ease;
        flex-shrink: 0;
        margin-left: 20px;
    }

    .faq-modern-icon svg {
        width: 24px;
        height: 24px;
    }

    .faq-modern-item.active .faq-modern-icon {
        transform: rotate(180deg);
        color: #014921;
    }

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

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

    .faq-modern-answer-content {
        padding: 0 28px 24px 28px;
        color: #4a5545;
        line-height: 1.7;
    }

    .faq-modern-answer-content p {
        margin: 0 0 12px 0;
        font-size: 16px;
    }

    .faq-modern-answer-content p:last-child {
        margin-bottom: 0;
    }

    .faq-modern-button-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .faq-modern-button {
        display: inline-block;
        padding: 16px 40px;
        background: #014921;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .faq-modern-button:hover {
        background: #013619;
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

    .faq-modern-button-outline {
        background: transparent;
        color: #014921;
        border: 2px solid #014921;
    }

    .faq-modern-button-outline:hover {
        background: #014921;
        color: white;
        border-color: #014921;
    }

    @media (max-width: 768px) {
        .faq-modern-title {
            font-size: 32px;
        }

        .faq-modern-subtitle {
            font-size: 16px;
        }

        .faq-modern-question {
            padding: 20px;
            font-size: 16px;
        }

        .faq-modern-answer-content {
            padding: 0 20px 20px 20px;
        }

        .faq-modern-icon {
            font-size: 24px;
        }
    }
