/* ===================
   BASE STYLES
   =================== */

.about-main {
    padding-top: calc(var(--header-height) + 20px);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* ===================
   HERO SLOGAN SECTION
   =================== */

.hero-slogan {
    position: relative;
    width: 100%;
    margin-top: 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    --hero-focus-x: 54%;
    --hero-focus-y: 46%;
    padding: clamp(72px, 13vh, 150px) 20px;
    min-height: clamp(520px, 90vh, 920px);
}

.hero-slogan--about .hero-media {
    background-image: url('../assets/hero2.webp');
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(45deg, var(--primary-brown), var(--sage-green));
    background-size: cover;
    background-position: center bottom; /* This is the fix */
    background-blend-mode: overlay;
    z-index: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: var(--hero-focus-x) var(--hero-focus-y);
    z-index: 0;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .hero-media {
        animation: subtle-zoom 20s infinite alternate;
    }
}

@media (max-width: 900px) {
    .hero-slogan {
        --hero-focus-x: 52%;
        --hero-focus-y: 40%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(114, 80, 55, 0.55) 0%, 
        rgba(47, 27, 37, 0.4) 45%, 
        rgba(179, 187, 175, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-slogan > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fade-in-up 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* ===================
   BREADCRUMB
   =================== */

.breadcrumb-section {
    background-color: var(--white);
    padding: 20px 0; /* Adjusted padding */
    border-bottom: 1px solid rgba(179, 187, 175, 0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb .separator {
    color: var(--medium-gray);
}

/* ===================
   COMMON SECTION STYLES
   =================== */

.who-we-are-section,
.mission-section,
.vision-section,
.values-section,
.impact-section,
.faq-section,
.legal-section {
    padding: 80px 0;
}

.who-we-are-section {
    background: linear-gradient(160deg, var(--cream-bg) 0%, #fff4e8 55%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.mission-section { background-color: var(--white); }
.vision-section { background-color: var(--light-cream); }
.values-section { background-color: var(--white); }
.impact-section { background-color: var(--sage-green); color: var(--white); }
.faq-section { background-color: var(--cream-bg); }
.legal-section { background-color: var(--white); }

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 16px;
    line-height: 1.2;
}

.vision-section .section-title::after,
.mission-section .section-title::after {
    display: none !important;
}

.impact-section .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.impact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================
   SECTION GRID LAYOUT
   =================== */

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse .content-area,
.section-grid.reverse .image-area {
    direction: ltr;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--deep-plum);
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================
   WHO WE ARE SECTION
   =================== */

.who-we-are-section::before,
.who-we-are-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at center, rgba(233, 133, 50, 0.18), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.who-we-are-section::before {
    top: -60px;
    right: 10%;
}

.who-we-are-section::after {
    bottom: -50px;
    left: 5%;
}

.who-we-are-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--border-radius-xl, 32px);
    padding: 40px;
    box-shadow: 0 20px 35px rgba(32, 28, 24, 0.08);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.who-we-are-card .section-grid {
    align-items: stretch;
    gap: 40px;
}

.who-we-are-card .content-area {
    padding-right: 10px;
}

.who-we-are-card .image-area {
    display: flex;
    align-items: stretch;
}

.who-we-are-card .section-image {
    height: 100%;
    min-height: 330px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: none;
}

.who-we-are-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(179, 187, 175, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(233, 133, 50, 0.08), rgba(179, 187, 175, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.highlight-card:hover::after {
    opacity: 1;
}

.highlight-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(233, 133, 50, 0.35);
}

.highlight-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 6px;
}

.highlight-card p {
    margin: 0;
    color: var(--deep-plum);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================
   MISSION & VISION SPECIFIC
   =================== */

.mission-points {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--light-cream);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition);
}

.mission-points li:hover {
    background-color: rgba(233, 133, 50, 0.1);
    transform: translateX(5px);
}

.mission-points li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(179, 187, 175, 0.2);
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.goal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B3BBAF, #8a9285); /* Use hex colors directly */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Direct hex instead of var */
    box-shadow: var(--shadow-md);
    font-size: 20px;
    flex-shrink: 0;
}

.goal-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 8px;
}

.goal-content p {
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* ===================
   VALUES & LEGAL CARDS
   =================== */

.values-grid,
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card,
.legal-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(179, 187, 175, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover,
.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-card::before,
.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--sage-green));
}

.value-icon,
.legal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #725037, #5a3f2b); /* Use hex colors directly */
    font-size: 24px;
    color: #ffffff; /* Direct hex instead of var */
    box-shadow: var(--shadow-sm);
}

.value-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    font-size: 28px;
}

.legal-icon {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    font-size: 24px;
    color: var(--white);
}

.value-card h3,
.legal-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 16px;
}

.value-card h3 { font-size: 1.4rem; }
.legal-card h3 { font-size: 1.3rem; }


.value-card p,
.legal-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.legal-card p {
    margin-bottom: 24px;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--sage-green);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font: inherit;
}

.legal-link:hover {
    background-color: var(--dark-sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================
   IMPACT SECTION
   =================== */

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ===================
   TIMELINE
   =================== */

/* ===================
   TIMELINE
   =================== */

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    top: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(50% - 50px);
    max-width: 450px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
    text-align: left;
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(179, 187, 175, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background-color: var(--light-cream);
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-brown);
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    color: var(--accent-orange);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-cream);
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--deep-plum);
    line-height: 1.6;
    margin: 0;
}

/* ===================
   CTA SECTION
   =================== */

.cta-section {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 160px;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--white);
    color: var(--accent-orange);
}

.cta-section .btn.btn-primary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn.btn-primary:hover {
    background-color: var(--white);
    color: var(--accent-orange);
}


/* ===================
   ANIMATIONS
   =================== */

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================
   RESPONSIVE DESIGN
   =================== */

@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }

    .section-image {
        order: -1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        width: 100%;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        max-width: none;
        margin-left: 70px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-year {
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding-top: 70px;
    }
    
    .hero-slogan {
        padding: 96px 16px 100px;
        min-height: clamp(420px, 90svh, 760px);
        --hero-focus-x: 50%;
        --hero-focus-y: 36%;
    }
    
    .hero-slogan > .container {
        min-height: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .who-we-are-section,
    .mission-section,
    .vision-section,
    .values-section,
    .impact-section,
    .faq-section,
    .legal-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-grid {
        gap: 30px;
    }

    .who-we-are-card {
        padding: 30px 24px;
    }
    
    .who-we-are-card .section-grid {
        gap: 24px;
    }
    
    .who-we-are-card .content-area {
        padding-right: 0;
    }

    .section-image {
        height: 350px;
    }
    
    .who-we-are-card .section-image {
        height: auto;
        min-height: 300px;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .values-grid,
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card,
    .legal-card {
        padding: 30px 20px;
    }
    
    .value-icon,
    .legal-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-points li {
        padding: 14px;
        font-size: 15px;
    }

    .goal-item {
        padding: 20px;
        gap: 16px;
    }
    
    .goal-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .faq-container {
        padding: 0;
    }

    .faq-question {
        padding: 20px 15px;
        text-align: left;
    }

    .faq-question span {
        text-align: left;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 15px 20px;
    }

    .timeline::before {
        left: 25px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 11px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .who-we-are-highlights {
        grid-template-columns: 1fr;
    }

    .breadcrumb-section {
        padding: 15px 0;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-slogan {
        padding: 90px 16px 80px;
        min-height: clamp(360px, 92svh, 680px);
        --hero-focus-x: 48%;
        --hero-focus-y: 34%;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .who-we-are-section,
    .mission-section,
    .vision-section,
    .values-section,
    .impact-section,
    .faq-section,
    .legal-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .section-image {
        height: 280px;
    }

    .who-we-are-card {
        padding: 24px 18px;
    }
    
    .who-we-are-card .section-grid {
        gap: 16px;
    }
    
    .who-we-are-card .section-image {
        min-height: 240px;
    }

    .highlight-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .highlight-icon {
        width: 48px;
        height: 48px;
    }

    .value-card,
    .legal-card {
        padding: 25px 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-points li {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
    
    .mission-points li::before {
        align-self: center;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .goal-icon {
        align-self: center;
    }

    .faq-question {
        padding: 16px 12px;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 12px 16px;
        font-size: 0.9rem;
    }

    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        padding-left: 55px;
    }
    
    .timeline-year {
        width: 45px;
        height: 45px;
        font-size: 10px;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* ===================
   ACCESSIBILITY & PRINT
   =================== */

@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;
    }
    
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    .value-card,
    .legal-card,
    .stat-card,
    .faq-item {
        border: 2px solid;
    }
    
    .section-icon,
    .value-icon,
    .legal-icon,
    .goal-icon,
    .stat-icon {
        border: 2px solid;
    }
}

@media print {
    .header,
    .footer,
    .cta-section,
    .hero-slogan,
    .breadcrumb-section {
        display: none !important;
    }
    
    .about-main {
        padding-top: 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .mission-section,
    .vision-section,
    .values-section,
    .impact-section,
    .faq-section,
    .legal-section {
        padding: 20px 0;
        background: transparent !important;
        color: black !important;
    }
    
    .section-title,
    .hero-title,
    .cta-content h2,
    .section-subtitle,
    .timeline-content,
    .value-card p,
    .legal-card p {
        color: black !important;
    }
    
    .section-image,
    .timeline::before,
    .timeline-year {
        display: none;
    }
    
    .timeline-item .timeline-content {
        margin: 0 !important;
        background: transparent !important;
        border: 1px solid #ccc !important;
    }
}
