/* ============================================================================
   5. ABOUT PAGE - page-about.php (Redesigned - Volunteer Page Pattern)
   ============================================================================ */

/* === New About Hero Section - Matching Volunteer Page === */
.about-hero {
    position: relative;
    height: clamp(360px, 52vh, 620px);
    min-height: 360px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* === Content Sections  === */
.about-content-section {
    padding: 6rem 6%;
}

.about-content-section.alt-bg {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Text on left, images on right */
.about-grid.text-left .about-text {
    order: 1;
}

.about-grid.text-left .about-images {
    order: 2;
}

/* Images on left, text on right */
.about-grid.text-right .about-images {
    order: 1;
}

.about-grid.text-right .about-text {
    order: 2;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Four Images Grid */
.about-images.four-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images.four-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.about-images.four-grid img:hover {
    transform: scale(1.02);
}

/* === Team Section - Clean Layout === */
.about-team-section {
    padding: 6rem 6%;
    background: var(--gray-50);
}

.about-team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-team-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-team-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
}

.about-team-group {
    margin-bottom: 3rem;
}

.about-team-group h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-team-grid {
    display: grid;
    gap: 1.5rem;
}

.about-team-grid.employees {
    grid-template-columns: repeat(2, 1fr);
}

.about-team-grid.board {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-team-card.compact {
    display: flex;
    flex-direction: column;
}

.team-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-100);
}

.about-team-card.compact .team-card-image {
    aspect-ratio: 1 / 1;
    height: auto;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-team-card:hover .team-card-image img {
    transform: scale(1.02);
}

.team-card-info {
    padding: 1.5rem;
}

.about-team-card.compact .team-card-info {
    padding: 1.25rem;
}

.team-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-contact a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-contact a:hover {
    color: var(--primary-green);
}

/* Team Stats */
.about-team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-stat {
    text-align: center;
}

.team-stat .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.team-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* === Impact Stats in Text Section === */
.about-impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impact-stat .impact-icon {
    font-size: 1.25rem;
}

.impact-stat span:last-child {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* === Green Divider === */
.about-divider {
    height: 80px;
    background: var(--primary-green);
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
    .about-hero {
        height: clamp(340px, 48vh, 520px);
        min-height: 340px;
        margin-top: 95px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        height: clamp(320px, 45vh, 460px);
        min-height: 320px;
        margin-top: 92px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: clamp(250px, 40vh, 340px);
        min-height: 250px;
        margin-top: 90px;
    }

    .about-content-section {
        padding: 3rem 5%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid.text-left .about-text,
    .about-grid.text-right .about-text {
        order: 1;
    }

    .about-grid.text-left .about-images,
    .about-grid.text-right .about-images {
        order: 2;
    }

    .about-images.four-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .about-images.four-grid img {
        height: 150px;
    }

    .about-team-section {
        padding: 3rem 5%;
    }

    .about-team-grid.employees,
    .about-team-grid.board {
        grid-template-columns: 1fr;
    }

    .about-team-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .team-stat {
        flex: 0 0 45%;
    }

    .about-impact-stats {
        grid-template-columns: 1fr;
    }

    .about-divider {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: clamp(220px, 35vh, 290px);
        min-height: 220px;
        margin-top: 80px;
    }

    .about-content-section {
        padding: 2.5rem 4%;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-images.four-grid img {
        height: 120px;
    }

    .about-team-section {
        padding: 2.5rem 4%;
    }

    .team-stat .stat-number {
        font-size: 1.5rem;
    }

    .about-divider {
        height: 50px;
    }
}

/* ============================================================================
   LEGACY STYLES - Old About Page (kept for reference)
   ============================================================================ */

/* === About Hero Section === */

.about-hero-redesigned {
    position: relative;
    margin: 2rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.hero-slideshow-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 600px;
    max-height: 900px;
}

.about-hero-redesigned .hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-redesigned .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    overflow: hidden;
}

.about-hero-redesigned .hero-slide.active {
    opacity: 1;
}

.about-hero-redesigned .hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 28, 0) 0%,
        rgba(10, 15, 28, 0.3) 40%,
        rgba(10, 15, 28, 0.7) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.about-hero-redesigned .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.about-hero-content-redesigned {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-badge-redesigned {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge-redesigned svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.about-hero-content-redesigned h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle-redesigned {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Redesigned About Hero */
@media (max-width: 992px) {
    .hero-slideshow-container {
        height: 65vh;
        min-height: 500px;
    }

    .about-hero-redesigned .container {
        padding-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero-redesigned {
        margin: 0.5rem;
        border-radius: 16px;
    }

    .hero-slideshow-container {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }

    .about-hero-redesigned .container {
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-hero-content-redesigned {
        max-width: 100%;
    }

    .about-hero-content-redesigned h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle-redesigned {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-badge-redesigned {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-badge-redesigned svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero-redesigned {
        margin: 0;
        border-radius: 0;
    }

    .hero-slideshow-container {
        height: 45vh;
        min-height: 320px;
        max-height: 450px;
    }

    .about-hero-redesigned .container {
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-hero-content-redesigned h1 {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
        line-height: 1.25;
    }

    .hero-subtitle-redesigned {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-badge-redesigned {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        gap: 0.375rem;
        margin-bottom: 0.75rem;
    }

    .hero-badge-redesigned svg {
        width: 12px;
        height: 12px;
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.1;
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.4) 0%,
        rgba(22, 163, 74, 0.3) 50%,
        rgba(21, 128, 61, 0.35) 100%);
    z-index: 3;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.6) 0%,
        rgba(22, 163, 74, 0.5) 50%,
        rgba(21, 128, 61, 0.6) 100%);
    z-index: 1;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.hero-badge-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-badge-modern .badge-icon {
    font-size: 1.1rem;
}

.about-hero-modern h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle-modern {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stat-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    min-width: 0; /* Prevent flex item overflow */
}

.hero-stat-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-stat-modern .stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-modern .stat-content {
    flex: 1;
    min-width: 0; /* Prevent flex item overflow */
    overflow: hidden;
}

.hero-stat-modern .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-modern .stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Modern About Sections */
.about-section-modern {
    padding: 6rem 0;
    position: relative;
}

.bg-gradient {
    background: linear-gradient(135deg,
        rgba(248, 250, 252, 1) 0%,
        rgba(241, 245, 249, 1) 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 250, 252, 1) 100%);
}

/* Modern Section Headers */
.section-header-modern {
    margin-bottom: 4rem;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.section-badge-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.section-badge-modern .badge-icon {
    font-size: 1.1rem;
}

.section-title-modern {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #22c55e !important;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(34, 197, 94, 0.3);
    letter-spacing: -0.02em;
}

.section-subtitle-modern {
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    color: var(--gray-800);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Modern Content Grids */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text-modern .text-content {
    margin-bottom: 3rem;
    padding-right: 2rem;
}

.about-text-modern {
    padding-left: 1rem;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.body-text {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Multi-color text styling */
.text-green {
    color: #22c55e !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3) !important;
}

.text-white {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.text-white-enhanced {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6) !important;
    font-size: 1.1em !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 12px !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: inline-block !important;
}

/* Floating Text Card for About Page */
.floating-text-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem 3rem;
    margin: 2rem 0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.floating-text-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.floating-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-green) 0%,
        var(--secondary-green) 50%,
        var(--primary-green) 100%
    );
}

.floating-text-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.floating-text-card .lead-text,
.floating-text-card .body-text {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.floating-text-card .body-text {
    margin-bottom: 0;
}

/* Enhanced green text styling within floating card */
.floating-text-card .text-green {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2) !important;
}

/* Modern Team Section Styling */
.team-section {
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.05) 0%,
        rgba(16, 185, 129, 0.08) 25%,
        rgba(34, 197, 94, 0.03) 50%,
        rgba(16, 185, 129, 0.06) 75%,
        rgba(34, 197, 94, 0.04) 100%
    );
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    opacity: 0.7;
    animation: teamBackgroundMove 20s linear infinite;
}

@keyframes teamBackgroundMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-20px) translateY(-10px) rotate(1deg); }
    66% { transform: translateX(20px) translateY(10px) rotate(-1deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.employees-section, .board-section {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.employees-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.board-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.team-member-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08),
                0 5px 15px rgba(34, 197, 94, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-green) 0%,
        var(--secondary-green) 50%,
        var(--primary-green) 100%
    );
    opacity: 0.8;
}

.team-member-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12),
                0 10px 25px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.team-member-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg,
        var(--primary-green) 0%,
        var(--primary-green-light) 25%,
        var(--secondary-green) 50%,
        var(--primary-green-light) 75%,
        var(--primary-green) 100%
    );
}

.member-image-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-green);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.25);
}

.member-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-image-container img {
    transform: scale(1.05);
}

.member-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.board-badge {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.member-info {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
    letter-spacing: -0.02em;
}

.member-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.member-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    min-height: 100px;
    justify-content: flex-start;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-link:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.contact-icon {
    font-size: 1rem;
}

.board-member .member-image-container {
    width: 140px;
    height: 140px;
    border-width: 4px;
}

/* Employee specific styling */
.employees-grid .member-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
}

.employees-grid .member-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.employees-grid .member-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Board member specific styling */
.board-member {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.board-member .member-image-container {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.board-member .member-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    margin-bottom: 1rem;
}

.board-member .member-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.board-member .member-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0;
}

.board-member .member-description {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.board-member .member-contact {
    margin-top: auto;
    padding-top: 1rem;
    min-height: 120px;
    justify-content: flex-start;
}

/* Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.value-card .value-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.value-card .value-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-card .value-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Modern Visual Components */
.about-visual-modern {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin: 0 auto;
}

/* About Page Specific Image Stack */
.about-visual-modern .image-stack {
    position: relative !important;
    height: 750px !important;
    overflow: visible !important;
    margin: 0 auto !important;
    max-width: 600px !important;
}

.about-visual-modern .image-card {
    position: absolute !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.about-visual-modern .image-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
}

.about-visual-modern .image-card.secondary:hover {
    transform: translateY(-5px) rotate(3deg) !important;
}

.about-visual-modern .image-card.primary {
    width: 380px !important;
    height: 450px !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
}

.about-visual-modern .image-card.secondary {
    width: 300px !important;
    height: 350px !important;
    top: 280px !important;
    right: 20px !important;
    z-index: 2 !important;
    transform: none !important;
}

.about-visual-modern .image-card img,
.image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.about-visual-modern .image-badge,
.image-badge {
    position: absolute !important;
    bottom: 30px !important;
    left: 30px !important;
    background: rgba(34, 197, 94, 0.95) !important;
    color: var(--white) !important;
    padding: 1rem 1.75rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    backdrop-filter: blur(15px) !important;
    z-index: 3 !important;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.about-visual-modern .floating-stats {
    position: absolute !important;
    top: 350px !important;
    right: 50px !important;
    z-index: 4 !important;
}

.about-visual-modern .floating-stat {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 3px solid var(--primary-green) !important;
    border-radius: 20px !important;
    padding: 1.5rem 2rem !important;
    text-align: center !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2) !important;
    animation: none !important;
    backdrop-filter: blur(15px) !important;
    min-width: 120px !important;
}

.about-visual-modern .floating-stat:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3) !important;
    border-color: var(--secondary-green) !important;
}


.about-visual-modern .floating-stat .stat-number,
.floating-stat .stat-number {
    display: block !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: var(--primary-green) !important;
    line-height: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.about-visual-modern .floating-stat .stat-text,
.floating-stat .stat-text {
    font-size: 0.9rem !important;
    color: var(--gray-700) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-top: 0.25rem !important;
}

/* Modern Timeline */
.timeline-modern {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.marker-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    border: 4px solid var(--white);
    margin-bottom: 0.5rem;
}

.marker-year {
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-content-modern {
    width: calc(50% - 60px);
    padding: 0 2rem;
}

.timeline-item-modern:nth-child(even) .timeline-content-modern {
    text-align: right;
}

.timeline-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
}

.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.timeline-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-item-modern:nth-child(even) .timeline-stats {
    justify-content: flex-end;
}

.timeline-stat {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.about-text {
    padding: 2rem 0;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* About Image Containers */
.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: var(--white);
}

.overlay-content {
    text-align: center;
}

.overlay-text {
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.image-stats {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.stat-badge {
    background: rgba(34, 197, 94, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-badge .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-badge .stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    background: var(--primary-green-light);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.highlight-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-green-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

.highlight-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === About Page - Timeline/Story Section === */

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4rem;
    width: 2px;
    height: 2rem;
    background: var(--primary-green-light);
}

.timeline-year {
    background: var(--primary-green);
    color: var(--white);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.timeline-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Community Features */
.community-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-left-color: var(--primary-green-dark);
}

.feature-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.feature-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Impact Metrics */
.impact-metrics {
    margin-top: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.metric-item:hover {
    background: var(--primary-green-pale);
    transform: translateX(10px);
}

.metric-icon {
    font-size: 2.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.metric-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.metric-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 50%,
        var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
}

.about-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta .cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-cta .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.about-cta .cta-buttons .btn {
    min-width: 180px;
}

/* Animation Classes for About Page */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--transition-slow);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-row.reverse {
        direction: ltr;
    }

    .about-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-highlights {
        gap: 1rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-year {
        width: 3rem;
        height: 3rem;
        font-size: 0.75rem;
    }

    .community-features {
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .metric-item {
        padding: 1rem;
    }

    .metric-icon {
        width: 3rem;
        height: 3rem;
        font-size: 2rem;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .process-steps {
        margin-top: 1rem;
    }

    .process-step {
        padding: 0.75rem;
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Erhvervspartner Page Styles */
.erhvervspartner-page {
    overflow-x: hidden;
}

/* Erhverv Hero Section */
.erhverv-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.erhverv-hero .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.erhverv-hero .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.erhverv-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.65) 0%,
        rgba(22, 163, 74, 0.55) 50%,
        rgba(21, 128, 61, 0.65) 100%);
    z-index: 1;
}

.erhverv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.erhverv-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
}

/* Erhverv Content Sections */
.erhverv-section {
    padding: 6rem 0;
    position: relative;
}

.erhverv-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.erhverv-content-row.reverse {
    direction: rtl;
}

.erhverv-content-row.reverse > * {
    direction: ltr;
}

.erhverv-text {
    padding: 2rem 0;
}

.erhverv-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.erhverv-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.erhverv-image {
    position: relative;
}

/* Contribution Types */
.contribution-types {
    margin-top: 2rem;
}

.contribution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.contribution-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-left-color: var(--primary-green-dark);
}

.contribution-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contribution-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.contribution-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Removed unused Benefits List section - not used in any templates */

/* Partnership Levels */
.partnership-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.partnership-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.partnership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.partnership-card .card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.partnership-card.featured .card-header {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partnership-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.level-description {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.card-benefits {
    padding: 2rem;
}

.card-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-benefits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 2rem;
}

.card-benefits li:last-child {
    border-bottom: none;
}

.card-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* SDG Goals */
.sdg-goals {
    margin-top: 2rem;
}

.sdg-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.sdg-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
    border-left-color: var(--primary-green-dark);
}

.sdg-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.sdg-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.sdg-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Bank Info */
.bank-info {
    margin-top: 2rem;
}

.bank-details {
    background: var(--primary-green-pale);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.bank-details h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-green-dark);
    font-size: 1.25rem;
}

.account-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.account-number .label {
    font-weight: 600;
    color: var(--text-primary);
}

.account-number .number {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--primary-green-dark);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    letter-spacing: 0.05em;
}

.legal-notice {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color, #f59e0b);
}

.legal-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.support-impact {
    margin-top: 2rem;
}

.support-impact h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.support-impact ul {
    list-style: none;
    padding: 0;
}

.support-impact li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.support-impact li::before {
    content: '🌟';
    position: absolute;
    left: 0;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-placeholder {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.partner-placeholder:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.partner-placeholder p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.partner-note {
    margin-top: 2rem;
}

.partner-note p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Foundations Grid */
.foundations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.foundation-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.foundation-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-10px);
}

.foundation-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.foundation-card h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.foundation-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-info .contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.contact-info .contact-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-details a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
}

.contact-details a:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.contact-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-cta h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-green-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-cta p {
    margin: 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* Erhverv CTA Section */
.erhverv-cta {
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 50%,
        var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.erhverv-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="erhverv-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23erhverv-pattern)"/></svg>');
    opacity: 0.3;
}

.erhverv-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.erhverv-cta .cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.erhverv-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.erhverv-cta .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.erhverv-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.erhverv-cta .cta-buttons .btn {
    min-width: 180px;
}

/* Responsive Design for Erhvervspartner Page */
@media (max-width: 768px) {
    .erhverv-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .erhverv-content-row.reverse {
        direction: ltr;
    }

    .erhverv-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .erhverv-hero-content {
        padding: 1rem;
    }

    .erhverv-section {
        padding: 3rem 0;
    }

    .partnership-levels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partnership-card.featured {
        transform: none;
    }

    .partnership-card.featured:hover {
        transform: translateY(-10px);
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .foundations-grid {
        grid-template-columns: 1fr;
    }

    .erhverv-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .erhverv-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .erhverv-hero h1 {
        font-size: 2rem;
    }

    .erhverv-text h2 {
        font-size: 1.75rem;
    }

    .contribution-item,
    .benefit-item,
    .sdg-item,
    .contact-item {
        padding: 1rem;
    }

    .bank-details {
        padding: 1.5rem;
    }

    .account-number {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .partnership-card .card-header {
        padding: 1.5rem;
    }

    .card-benefits {
        padding: 1.5rem;
    }
}

/* Frivillig Page Styles */
.frivillig-page {
    overflow-x: hidden;
}

/* Frivillig Hero Section */
.frivillig-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.frivillig-hero .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.frivillig-hero .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.frivillig-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.65) 0%,
        rgba(22, 163, 74, 0.55) 50%,
        rgba(21, 128, 61, 0.65) 100%);
    z-index: 1;
}

.frivillig-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.frivillig-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
}

/* Frivillig Content Sections */
.frivillig-section {
    padding: 6rem 0;
    position: relative;
}

.frivillig-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.frivillig-content-row.reverse {
    direction: rtl;
}

.frivillig-content-row.reverse > * {
    direction: ltr;
}

.frivillig-text {
    padding: 2rem 0;
}

.frivillig-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.frivillig-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.frivillig-image {
    position: relative;
}

/* Work Highlights */
.work-highlights {
    margin-top: 2rem;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.work-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-left-color: var(--primary-green-dark);
}

.work-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.work-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.work-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Volunteer Impact */
.volunteer-impact {
    margin-top: 2rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.impact-item:hover {
    background: var(--primary-green-pale);
    transform: translateX(5px);
}

.impact-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.impact-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.impact-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Daily Activities */
.daily-activities {
    margin-top: 2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.activity-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
    border-left-color: var(--primary-green-dark);
}

.activity-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.activity-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.activity-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.volunteer-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--primary-green-pale);
    border-radius: var(--radius-lg);
}

.volunteer-cta p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.volunteer-cta p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--white);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Frivillig CTA Section */
.frivillig-cta {
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 50%,
        var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.frivillig-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="frivillig-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23frivillig-pattern)"/></svg>');
    opacity: 0.3;
}

.frivillig-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.frivillig-cta .cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.frivillig-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.frivillig-cta .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-info-cta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon-cta {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details-cta h4 {
    margin: 0 0 0.25rem 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.contact-details-cta a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
}

.contact-details-cta a:hover {
    text-decoration: underline;
}

.frivillig-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.frivillig-cta .cta-buttons .btn {
    min-width: 180px;
}

.final-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.final-message p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--white);
}

/* Responsive Design for Frivillig Page */
@media (max-width: 768px) {
    .frivillig-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .frivillig-content-row.reverse {
        direction: ltr;
    }

    .frivillig-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .frivillig-hero-content {
        padding: 1rem;
    }

    .frivillig-section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .frivillig-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .frivillig-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .frivillig-hero h1 {
        font-size: 2rem;
    }

    .frivillig-text h2 {
        font-size: 1.75rem;
    }

    .work-item,
    .impact-item,
    .activity-item {
        padding: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .volunteer-cta {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* === About Page - Team Section === */

.team-category {
    margin-top: 4rem;
}

.team-category:first-child {
    margin-top: 3rem;
}

.team-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.team-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.employees-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.board-grid {
    grid-template-columns: repeat(5, 1fr);
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-green-pale);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.board-grid .member-photo {
    height: 220px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-normal);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.8) 0%,
        rgba(22, 163, 74, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: scale(1.1);
}

.social-icon {
    font-size: 1.25rem;
}

.member-info {
    padding: 2rem;
}

.board-grid .member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.board-grid .member-name {
    font-size: 1.25rem;
}

.member-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.board-grid .member-description {
    margin: 0;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-contact .contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.member-contact .contact-item:hover {
    background: var(--primary-green-pale);
    color: var(--primary-green-dark);
}

/* Responsive Design for Team Section */
@media (max-width: 1200px) {
    .board-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .employees-grid {
        grid-template-columns: 1fr;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-category-title {
        font-size: 1.75rem;
    }

    .member-photo {
        height: 250px;
    }

    .board-grid .member-photo {
        height: 200px;
    }

    .member-info {
        padding: 1.5rem;
    }

    .board-grid .member-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        gap: 1.5rem;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .team-category-title {
        font-size: 1.5rem;
    }

    .member-name {
        font-size: 1.25rem;
    }

    .board-grid .member-name {
        font-size: 1.125rem;
    }

    .member-contact {
        gap: 0.25rem;
    }

    .contact-item {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

/* Locations Banner Styles */
.locations-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 30%,
        var(--primary-green) 70%,
        var(--primary-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.locations-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="banner-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="40" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="10" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23banner-pattern)"/></svg>');
    opacity: 0.6;
    animation: patternFloat 20s ease-in-out infinite;
}

.locations-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%);
    pointer-events: none;
}

@keyframes patternFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(5px) translateY(-10px); }
}

.banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 1600px;
    margin: 0 auto;
    width: 92%;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.banner-content:hover {
    transform: translateY(-2px);
    box-shadow:
        0 32px 64px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    min-width: 280px;
    padding-right: 2rem;
    border-right: 2px solid rgba(34, 197, 94, 0.15);
}

.header-icon {
    font-size: 3rem;
    color: var(--primary-green);
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 6px 12px rgba(34, 197, 94, 0.4)); }
}

.header-text h3 {
    margin: 0 0 0.5rem 0;
    color: #111827;
    font-size: 1.75rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.header-text p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

.locations-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
    mask: linear-gradient(90deg,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%);
    -webkit-mask: linear-gradient(90deg,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%);
}

.locations-scroll-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.locations-scroll-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(270deg,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.locations-track {
    display: flex;
    gap: 2rem;
    padding: 0.5rem 0;
    animation: slideLocations 35s linear infinite;
    width: max-content;
    transition: animation-play-state 0.3s ease;
}

.locations-track:hover {
    animation-play-state: paused;
}

.banner-content:hover .locations-track {
    animation-duration: 50s;
}

@keyframes slideLocations {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform: translateY(0) scale(1);
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
        var(--primary-green) 0%,
        var(--secondary-green) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.location-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.25);
}

.location-item:hover::before {
    width: 100%;
    opacity: 0.06;
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 100%);
}

.location-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.location-item:hover::after {
    animation: shimmer 0.8s ease-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}

.day-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 100%);
    padding: 1rem 0.75rem;
    border-radius: 12px;
    min-width: 70px;
    flex-shrink: 0;
    box-shadow:
        0 4px 6px -1px rgba(34, 197, 94, 0.3),
        0 2px 4px -1px rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.day-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%);
    pointer-events: none;
}

.day {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-info {
    flex: 1;
    min-width: 0;
}

.location-info h4 {
    margin: 0 0 0.25rem 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.location-info p {
    margin: 0;
    color: #4b5563;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.location-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.quick-btn {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--primary-green-pale) 0%,
        rgba(34, 197, 94, 0.15) 100%);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-btn:hover {
    background: linear-gradient(135deg,
        var(--primary-green) 0%,
        var(--secondary-green) 100%);
    border-color: var(--primary-green-dark);
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 8px 16px -4px rgba(34, 197, 94, 0.4),
        0 4px 8px -2px rgba(34, 197, 94, 0.3);
}

.quick-btn:hover::before {
    opacity: 1;
}

.quick-btn:active {
    transform: scale(1.05) rotate(2deg);
}


/* Responsive Design for Locations Banner */
@media (max-width: 1200px) {
    .banner-content {
        width: 95%;
        padding: 2rem 2.5rem;
        gap: 2.5rem;
    }

    .location-item {
        min-width: 300px;
    }
}

@media (max-width: 1024px) {
    .banner-content {
        width: 98%;
        padding: 1.75rem 2rem;
        gap: 2rem;
    }

    .banner-header {
        justify-content: center;
        text-align: center;
        min-width: auto;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(34, 197, 94, 0.15);
        padding-bottom: 1.5rem;
    }

    .location-item {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .locations-banner {
        padding: 1.5rem 0;
    }

    .banner-content {
        padding: 1rem 1.5rem;
        margin: 0 1rem;
    }

    .banner-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-icon {
        font-size: 2rem;
    }

    .header-text h3 {
        font-size: 1.25rem;
        color: #1f2937;
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    }

    .header-text p {
        color: #374151;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    }

    .location-item {
        min-width: 240px;
        padding: 0.75rem 1rem;
    }

    .location-info h4 {
        font-size: 0.9rem;
    }

    .location-info p {
        font-size: 0.75rem;
    }

    .quick-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .locations-banner {
        padding: 1rem 0;
    }

    .banner-content {
        padding: 0.75rem 1rem;
        margin: 0 0.5rem;
    }

    .banner-header {
        gap: 0.25rem;
    }

    .header-text h3 {
        font-size: 1.125rem;
        color: #1f2937;
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    }

    .header-text p {
        font-size: 0.8rem;
        color: #374151;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    }

    .locations-track {
        gap: 1rem;
    }

    .location-item {
        min-width: 200px;
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .day-info {
        padding: 0.5rem;
        min-width: 50px;
    }

    .day {
        font-size: 0.8rem;
    }

    .time {
        font-size: 0.7rem;
    }

    .location-info h4 {
        font-size: 0.85rem;
    }

    .location-info p {
        font-size: 0.7rem;
    }

    .quick-btn {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }
}

/* Responsive Design for Homepage Redesign */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .community-stats {
        gap: 2rem;
    }

    .contact-info {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-section,
    .how-it-works-section,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }

    .mission-text .section-header h2 {
        font-size: 2.25rem;
    }

    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .point-icon {
        align-self: center;
    }

    .mission-cta .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .video-container {
        width: 90%;
        height: 350px;
        margin: 1.5rem auto;
    }

    .video-overlay {
        padding: 2rem;
    }

    .overlay-content h3 {
        font-size: 1.75rem;
    }

    .overlay-content p {
        font-size: 1rem;
    }

    .video-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .video-stat {
        min-width: 100px;
        padding: 1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .impact-highlight {
        padding: 2rem;
    }

    .community-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .contact-item {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        max-width: 300px;
        width: 100%;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .mission-section,
    .how-it-works-section,
    .testimonials-section,
    .cta-section {
        padding: 3rem 0;
    }

    .mission-text .section-header h2 {
        font-size: 1.875rem;
    }

    .mission-text .section-header .lead {
        font-size: 1.125rem;
    }

    .mission-point {
        padding: 1.25rem;
    }

    .point-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .point-content h4 {
        font-size: 1.25rem;
    }

    .mission-cta .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .video-container {
        width: 95%;
        height: 280px;
        margin: 1rem auto;
    }

    .video-overlay {
        padding: 1.5rem;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
    }

    .overlay-content p {
        font-size: 0.95rem;
    }

    .video-stat {
        padding: 0.75rem;
        min-width: 80px;
    }

    .video-stat .stat-number {
        font-size: 1.5rem;
    }

    .video-controls {
        bottom: 15px;
        right: 15px;
    }

    .video-toggle {
        width: 40px;
        height: 40px;
    }

    .step-content {
        padding: 1rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }

    .impact-highlight {
        padding: 1.5rem;
    }

    .impact-item {
        padding: 0.75rem;
    }
}

/* Enhanced User Experience Features */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--secondary-green);
    transition: width 0.3s ease, background 0.3s ease;
}

/* Location Enhancements */
.nearest-badge,
.today-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.today-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.location-item.nearest-location {
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.location-item.today-location {
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

/* Time-based Messages */
.time-message,
.weekend-message,
.seasonal-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.weekend-message {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.1), rgba(107, 114, 128, 0.1));
    border-color: rgba(156, 163, 175, 0.3);
}

.seasonal-message {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

.seasonal-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.seasonal-icon {
    font-size: 2rem;
}

.seasonal-text {
    text-align: left;
}

.seasonal-text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

/* Welcome Back Message */
.welcome-back-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.welcome-back-message.show {
    opacity: 1;
    transform: translateX(0);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.welcome-icon {
    font-size: 1.2rem;
}

/* Form Enhancements */
.field-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: "⚠️";
    font-size: 0.7rem;
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateX(0);
}

.form-message-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.form-message-success {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.form-message-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Interactive Features */
.copy-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* Social Proof Elements */
.visitor-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.visitor-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

.visitor-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.visitor-icon {
    font-size: 1rem;
}

.activity-notification {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 300px;
}

.activity-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.activity-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.activity-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.activity-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.activity-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Enhanced Animations */


.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .welcome-back-message,
    .visitor-indicator,
    .activity-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .form-message {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .seasonal-content {
        flex-direction: column;
        text-align: center;
    }

    .seasonal-text {
        text-align: center;
    }
}

/* Advanced Accessibility Features */

/* Skip Links */
.skip-links {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Keyboard Focus Indicators */
.keyboard-focused {
    outline: 3px solid var(--primary-green) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 5px rgba(76, 175, 80, 0.2) !important;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Live Region for Screen Readers */
.live-region {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* High Contrast Mode */
.high-contrast-mode {
    filter: contrast(150%) brightness(110%);
}

.high-contrast-mode .btn {
    border: 2px solid currentColor;
}

.high-contrast-mode .card,
.high-contrast-mode .location-item {
    border: 2px solid var(--text-dark);
}

/* Accessibility Toolbar */
.accessibility-toolbar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.accessibility-toggle {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 8px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

.accessibility-toggle:hover,
.accessibility-toggle:focus {
    background: var(--secondary-green);
    transform: translateX(-5px);
}

.accessibility-panel {
    position: absolute;
    right: 100%;
    top: 0;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.accessibility-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.accessibility-panel h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.accessibility-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.accessibility-controls button {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.accessibility-controls button:hover,
.accessibility-controls button:focus {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Network Status Indicator */
.network-status {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 10000;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.network-status.show {
    transform: translateX(-50%) translateY(0);
}

.network-status.offline {
    background: rgba(239, 68, 68, 0.9);
}

.network-status.online {
    background: rgba(76, 175, 80, 0.9);
}

.status-icon {
    font-size: 1rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-particles,
    .floating-particles {
        display: none;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .card,
    .location-item {
        border: 2px solid var(--text-dark);
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Focus Management */
.focus-trap {
    position: relative;
}

.focus-trap::before,
.focus-trap::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Print Accessibility */
@media print {
    .accessibility-toolbar,
    .network-status,
    .skip-links {
        display: none !important;
    }

    .sr-only {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        clip: auto;
        white-space: normal;
    }
}

/* Mobile Accessibility Enhancements */
@media (max-width: 768px) {
    .accessibility-toolbar {
        bottom: 20px;
        top: auto;
        right: 20px;
        transform: none;
    }

    .accessibility-toggle {
        border-radius: 50%;
        width: 56px;
        height: 56px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .accessibility-panel {
        bottom: 100%;
        top: auto;
        right: 0;
        margin-bottom: 10px;
    }

    .network-status {
        left: 10px;
        right: 10px;
        transform: translateY(-100%);
    }

    .network-status.show {
        transform: translateY(0);
    }
}

/* === About Page Content Sections === */

/* Modern Process Flow */
.process-overview {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
}

.process-flow-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step-modern {
    flex: 1;
    text-align: center;
}

.step-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

/* About Page - Process Step Number Badge */
.process-step-modern .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.step-content-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step-content-modern p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

.process-arrow {
    display: flex;
    align-items: center;
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
}

.arrow-line {
    width: 40px;
    height: 2px;
    background: var(--primary-green);
    margin-right: 0.5rem;
}

.impact-summary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
}

.summary-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.summary-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.summary-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.target-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.target-group {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Modern Community Section */
.community-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.community-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.community-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
}

.community-stat:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.community-stat .stat-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.community-stat .stat-content {
    flex: 1;
}

.community-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.community-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.community-features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card-modern {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon-modern {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-card-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.feature-card-modern p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detail-tag {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Modern Impact Metrics */
.impact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.partnership-showcase {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.partnership-showcase h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.partner-types {
    display: flex;
    gap: 1rem;
}

.partner-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.partner-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric-card-modern {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.metric-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
}

.metric-visual {
    margin-bottom: 1.5rem;
}

.metric-icon-modern {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Removed unused .metric-number and .metric-unit - not used in templates */

.metric-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.metric-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Modern Team Section */
.team-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.key-members {
    margin-bottom: 4rem;
}

.member-card-modern {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.member-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.member-details {
    text-align: center;
}

.member-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.member-contact-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.team-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.team-stat-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-stat-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.team-stat-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.team-stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.team-values {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    text-align: center;
}

.team-values h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-text {
    font-weight: 500;
}

/* Modern CTA Section - Warmer, Human-Centered */
.about-cta-modern,
.business-cta-modern {
    position: relative;
    padding: 5rem 6%;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-pattern {
    display: none;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content-modern h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-subtitle-modern {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary-modern {
    background: var(--white);
    color: var(--primary-green-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-outline-modern {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-modern .btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(3px);
}

/* CTA Stats */
.cta-stats-modern {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-stat-modern {
    text-align: center;
}

.stat-number-modern {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-modern {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}
.stat-plus-modern {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

/* ===== RESPONSIVE STYLES FOR MODERN ABOUT PAGE ===== */

@media (max-width: 1024px) {
    .about-content-grid,
    .community-content-grid,
    .impact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .about-visual-modern {
        padding: 1.5rem !important;
    }

    .about-visual-modern .image-stack {
        height: 500px !important;
        max-width: 500px !important;
    }

    .about-visual-modern .image-card.primary {
        width: 320px !important;
        height: 380px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .about-visual-modern .image-card.secondary {
        width: 250px !important;
        height: 300px !important;
        top: 200px !important;
        right: 10px !important;
        z-index: 2 !important;
        transform: none !important;
    }

    .about-visual-modern .floating-stats {
        top: 280px !important;
        right: 30px !important;
        z-index: 4 !important;
    }


    .timeline-content-modern {
        width: calc(50% - 40px);
    }

    /* Process Flow - Horizontal Scroll on Mobile */
    .process-flow-modern {
        flex-direction: row;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 1rem 1rem 1rem 1rem;
        margin: 0 -1rem 2rem -1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-green) rgba(0, 0, 0, 0.1);
        width: calc(100% + 2rem);
    }

    .process-flow-modern::-webkit-scrollbar {
        height: 6px;
    }

    .process-flow-modern::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }

    .process-flow-modern::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 10px;
    }

    .process-step-modern {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .process-arrow {
        transform: rotate(0deg);
        min-width: 40px;
        max-width: 40px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .process-arrow .arrow-line {
        display: none;
    }

    .process-arrow .arrow-head {
        font-size: 2rem;
        color: var(--primary-green);
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .team-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-modern {
        min-height: 40vh;
        padding: 3rem 0;
        margin: 1rem;
        border-radius: 20px;
    }

    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-stat-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* About Sections - Mobile Optimized */
    .about-section-modern {
        padding: 3rem 0;
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
    }

    .about-section-modern .container {
        max-width: 100% !important;
        padding: 0 !important;
        overflow-x: hidden;
    }

    .section-header-modern {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-title-modern {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-subtitle-modern {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-badge-modern {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .business-partner-page .section-header-modern {
        margin-bottom: 1.5rem;
    }

    /* Who We Are Section - Mobile */
    .who-we-are .about-visual-modern {
        display: none !important;
    }

    /* Text Content Area with Background Images */
    .who-we-are .about-text-modern {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    /* Sliding Background Images for Text Area */
    .who-we-are .about-text-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/wp-content/uploads/2025/10/IMG_20240409_150205-scaled-1.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 1;
        animation: whoWeAreSlideshow 15s infinite;
    }

    /* Gradient Fade Overlay - Fades to top */
    .who-we-are .about-text-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to bottom,
            rgba(248, 250, 252, 1) 0%,
            rgba(248, 250, 252, 0.95) 5%,
            rgba(248, 250, 252, 0.8) 20%,
            rgba(248, 250, 252, 0.6) 40%,
            rgba(248, 250, 252, 0.4) 60%,
            rgba(248, 250, 252, 0.3) 80%,
            rgba(248, 250, 252, 0.2) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    @keyframes whoWeAreSlideshow {
        0%, 33% {
            background-image: url('/wp-content/uploads/2025/10/IMG_20240409_150205-scaled-1.jpg');
            opacity: 0.15;
        }
        34%, 66% {
            background-image: url('/wp-content/uploads/2025/09/Spar-Nord-Fonden-2024_NZ2_5195-400x300.jpg');
            opacity: 0.15;
        }
        67%, 100% {
            background-image: url('/wp-content/uploads/2025/09/Spar-Nord-Fonden-2024_NZ2_5116-scaled-1-2048x1296.jpg');
            opacity: 0.15;
        }
    }

    /* Text Content - Above Background */
    .who-we-are .text-content {
        position: relative;
        z-index: 2;
    }

    /* Floating Text Card with Translucent Background */
    .who-we-are .floating-text-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        position: relative;
        z-index: 2;
    }

    /* Values Grid - 2 Columns on Mobile */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .value-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .value-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .value-content h4 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
        line-height: 1.2;
    }

    .value-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Timeline - Mobile Optimized */
    .timeline-modern {
        padding: 1rem 0;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item-modern,
    .timeline-item-modern:nth-child(even) {
        flex-direction: row;
        margin-left: 60px;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
    }

    .marker-icon {
        font-size: 1.5rem;
    }

    .marker-year {
        font-size: 0.75rem;
    }

    .timeline-content-modern {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .timeline-item-modern:nth-child(even) .timeline-content-modern {
        text-align: left;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .timeline-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .timeline-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .timeline-stats {
        justify-content: flex-start;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .timeline-stat {
        font-size: 0.85rem;
    }

    /* Process Flow - Mobile */
    .process-overview {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .process-overview .lead-text,
    .process-overview .body-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Process Steps - Compact Cards for Horizontal Scroll */
    .process-step-modern {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        border: 2px solid var(--gray-100);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .step-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 0.75rem;
        width: 32px;
        height: 32px;
    }

    .step-content-modern h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .step-content-modern p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Step Details - Horizontal Single Row on Mobile */
    .step-details {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.375rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .step-details::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .detail-item {
        font-size: 0.7rem;
        padding: 0.375rem 0.625rem;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 12px;
        line-height: 1.2;
    }

    /* Impact Summary - Mobile */
    .impact-summary {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0 1rem;
        overflow: hidden;
    }

    .summary-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .summary-icon {
        font-size: 2.5rem;
    }

    .summary-content {
        width: 100%;
        overflow: hidden;
    }

    .summary-content h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Target Groups - 2 Column Grid on Mobile */
    .target-groups {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .target-group {
        font-size: 0.7rem;
        padding: 0.625rem 0.5rem;
        white-space: normal;
        text-align: center;
        border-radius: 14px;
        line-height: 1.3;
        word-break: break-word;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        hyphens: auto;
    }

    /* Community Features - 2 Columns on Mobile */
    .community-features-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .feature-card-modern {
        padding: 1rem;
    }

    .feature-icon-modern {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .feature-card-modern h4 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .feature-card-modern p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Community Stats - Horizontal Single Row on Mobile */
    .community-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 0.5rem;
    }

    .community-stats::-webkit-scrollbar {
        display: none;
    }

    .community-stat {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0.875rem;
        min-width: 140px;
        max-width: 140px;
        flex-shrink: 0;
        text-align: center;
    }

    .community-stat .stat-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .community-stat .stat-content {
        width: 100%;
    }

    .community-stat .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    /* Impact Section - Mobile */
    .partner-types {
        flex-direction: column;
        gap: 1rem;
    }

    .partner-type {
        padding: 1rem;
    }

    /* Team Section - Mobile */
    /* Team Grid - 2 Columns on Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .team-member-card {
        padding: 1rem;
        min-height: auto;
    }

    .member-image-container {
        width: 80px;
        height: 80px;
        margin-bottom: 0.75rem;
    }

    .member-info {
        padding: 0.5rem;
    }

    .member-name {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }

    .member-title {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .member-bio {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .member-description {
        font-size: 0.875rem;
    }

    .member-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-link {
        font-size: 0.85rem;
    }

    /* Hide Team Stats, Team Values, and Environmental Impact on Mobile */
    .team-stats-modern,
    .team-values,
    .impact-section {
        display: none !important;
    }

    /* CTA Section - Mobile */
    .about-cta-modern {
        padding: 3rem 0;
    }

    .cta-content-modern h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .cta-subtitle-modern {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-modern {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .cta-stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number-modern {
        font-size: 2rem;
    }

    .stat-label-modern {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-hero-modern {
        padding: 2rem 0;
        margin: 0;
        border-radius: 0;
    }

    .hero-badge-modern {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* About Sections - Small Mobile */
    .about-section-modern {
        padding: 2.5rem 0;
    }

    .section-header-modern {
        padding: 0 0.75rem;
        margin-bottom: 1.5rem;
    }

    .section-title-modern {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }

    .section-subtitle-modern {
        font-size: 0.9rem;
    }

    .section-badge-modern {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Text Content */
    .floating-text-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .lead-text {
        font-size: 1rem;
    }

    .body-text {
        font-size: 0.875rem;
    }

    /* Who We Are - Small Mobile */
    .who-we-are .about-text-modern {
        border-radius: 16px;
    }

    .who-we-are .about-text-modern::before {
        opacity: 0.12;
    }

    .who-we-are .floating-text-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    /* Values Grid - 2 Columns */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .value-card {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
        gap: 0.625rem;
        border-radius: 12px;
    }

    .value-icon {
        font-size: 1.75rem;
    }

    .value-content h4 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .value-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Timeline */
    .timeline-line {
        left: 15px;
    }

    .timeline-item-modern,
    .timeline-item-modern:nth-child(even) {
        margin-left: 50px;
    }

    .timeline-marker {
        left: 15px;
        width: 50px;
        height: 50px;
    }

    .marker-icon {
        font-size: 1.25rem;
    }

    .marker-year {
        font-size: 0.7rem;
    }

    .timeline-card {
        padding: 1.25rem;
    }

    .timeline-card h3 {
        font-size: 1.125rem;
    }

    .timeline-card p {
        font-size: 0.85rem;
    }

    .timeline-stat {
        font-size: 0.8rem;
    }

    /* Process Flow */
    .process-overview {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    /* Process Flow - Smaller Cards on Small Mobile */
    .process-step-modern {
        min-width: 260px;
        max-width: 260px;
        padding: 1.25rem;
    }

    .step-icon {
        font-size: 2.25rem;
        width: 60px;
        height: 60px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .step-content-modern h3 {
        font-size: 1rem;
    }

    .step-content-modern p {
        font-size: 0.8rem;
    }

    .process-arrow {
        min-width: 30px;
        max-width: 30px;
    }

    .process-arrow .arrow-head {
        font-size: 1.5rem;
    }

    /* Step Details - Compact Horizontal Row */
    .step-details {
        gap: 0.3rem;
    }

    .detail-item {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
        border-radius: 10px;
    }

    /* Impact Summary - Small Mobile */
    .impact-summary {
        padding: 1.25rem;
        border-radius: 14px;
        margin: 0 0.75rem;
    }

    .summary-icon {
        font-size: 2rem;
    }

    .summary-content h4 {
        font-size: 1.125rem;
    }

    /* Target Groups - Extra Compact 2 Column Grid on Small Mobile */
    .target-groups {
        gap: 0.375rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .target-group {
        font-size: 0.65rem;
        padding: 0.5rem 0.375rem;
        border-radius: 12px;
        min-height: 44px;
    }

    /* Community Stats - Compact Horizontal Row */
    .community-stat {
        min-width: 130px;
        max-width: 130px;
        padding: 0.875rem 0.75rem;
    }

    .community-stat .stat-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .community-stat .stat-label {
        font-size: 0.7rem;
    }

    /* Community Features - 2 Columns Compact */
    .community-features-modern {
        gap: 0.625rem;
    }

    .feature-card-modern {
        padding: 0.875rem;
    }

    .feature-icon-modern {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .feature-card-modern h4 {
        font-size: 0.9rem;
    }

    .feature-card-modern p {
        font-size: 0.8rem;
    }

    .detail-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    /* Impact Metrics */
    .metric-card-modern {
        padding: 1.25rem;
    }

    .metric-icon-modern {
        font-size: 2rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-unit {
        font-size: 0.75rem;
    }

    .metric-content h4 {
        font-size: 1rem;
    }

    .metric-content p {
        font-size: 0.85rem;
    }

    /* Image Stack */
    .about-visual-modern {
        padding: 1rem !important;
    }

    .about-visual-modern .image-stack {
        height: 350px !important;
        max-width: 300px !important;
    }

    .about-visual-modern .image-card.primary {
        width: 180px !important;
        height: 220px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .about-visual-modern .image-card.secondary {
        width: 140px !important;
        height: 180px !important;
        top: 130px !important;
        right: 5px !important;
        z-index: 2 !important;
        transform: none !important;
    }

    .about-visual-modern .floating-stats {
        top: 200px !important;
        right: 15px !important;
        z-index: 4 !important;
    }

    .about-visual-modern .floating-stat {
        padding: 0.875rem 1.25rem !important;
        min-width: 90px !important;
    }

    .about-visual-modern .floating-stat .stat-number {
        font-size: 1.75rem !important;
    }

    .about-visual-modern .floating-stat .stat-text {
        font-size: 0.75rem !important;
    }

    /* Team Section - 2 Columns Compact */
    .team-grid {
        gap: 0.625rem;
    }

    .team-member-card {
        padding: 0.875rem;
    }

    .member-image-container {
        width: 70px;
        height: 70px;
        margin-bottom: 0.625rem;
    }

    .member-info {
        padding: 0.375rem;
    }

    .member-name {
        font-size: 0.875rem;
        margin-bottom: 0.2rem;
    }

    .member-title {
        font-size: 0.75rem;
    }

    .member-bio {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .member-description {
        font-size: 0.8rem;
    }

    .contact-link {
        font-size: 0.8rem;
    }

    /* Keep Team Stats, Team Values, and Environmental Impact Hidden on Small Mobile */
    .team-stats-modern,
    .team-values,
    .impact-section {
        display: none !important;
    }

    /* CTA Section */
    .about-cta-modern {
        padding: 2.5rem 0;
    }

    .cta-content-modern {
        padding: 0 1rem;
    }

    .cta-icon-modern {
        font-size: 2.5rem;
    }

    .cta-content-modern h2 {
        font-size: 1.5rem;
    }

    .cta-subtitle-modern {
        font-size: 0.9rem;
    }

    .btn-modern {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-icon {
        font-size: 1.125rem;
    }

    .cta-stats-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-number-modern {
        font-size: 1.75rem;
    }

    .stat-label-modern {
        font-size: 0.7rem;
    }
}



