.about-main {
    padding-top: 0;
}

.about-hero { 
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

@media (min-width: 769px) {
    .about-hero {
        margin-top: 80px;
    }
}

.about-hero-img { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
    -webkit-mask-image: linear-gradient(to bottom, #012c39 0%, #012c39 0%, #00000000 85%);
    mask-image: linear-gradient(to bottom, #012c39 0%, #012c39 0%, #00000000 85%);
    opacity: 0.3;
}

.about-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 24px; 
    position: relative;
    z-index: 4;
    text-align: center;
}

.about-hero .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; 
    height: 100%;
    padding-bottom: 50px; 
}


.about-hero .hero-ctas { 
    margin-bottom: 0; 
}

.about-title { 
    color: var(--yellow-600);
    font-size: var(--fs-3xl); 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.6);
    max-width: 800px;
}

.about-subtitle { 
    color: rgba(255, 255, 255, 0.95); 
    font-size: 16px; 
    font-weight: 100;
    line-height: 1.6;
    max-width: 500px; 
    margin-bottom: 20px;
    text-align: left;
}

.hero-ctas { 
    margin-top: 0px; 
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 14px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    border-radius: 8px;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-primary,
.btn-outline {
    background: var(--green-300);
    color: #012c39;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Swipe overlay like primary button */
.btn-primary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-dark-blue-500), var(--primary-green-500));
    border: 0.5px solid var(--primary-orange-500);
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
}

/* Same-text overlay */
.btn-primary::after,
.btn-outline::after {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-orange-500);
    font-weight: 700;
    font-size: inherit;
    line-height: 1;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before,
.btn-outline:hover::before {
    transform: scaleX(1.5);
    opacity: 1;
}

.btn-primary:hover,
.btn-outline:hover {
    color: transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover::after,
.btn-outline:hover::after {
    opacity: 1;
}

/* Stats Section */
.about-stats {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(1,44,57,0.10), rgba(1,44,57,0));
}

.hero-stats { 
    display: grid; 
    grid-template-columns: repeat(4, minmax(0,1fr)); 
    gap: 20px; 
}

.stat { 
    background: rgba(1,44,57,0.06); 
    border: 1px solid rgba(1,44,57,0.15); 
    border-radius: 16px; 
    padding: 24px; 
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.stat-number { 
    color: #ffd24d; 
    font-size: var(--fs-2xl); 
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label { 
    color: var(--yellow-100); 
    font-size: var(--fs-sm); 
    font-weight: 300;
    opacity: 0.9;
}

.about-section { 
    padding: 80px 0; 
    background: linear-gradient(180deg, rgba(1,44,57,0.10), rgba(1,44,57,0));
}

.section-title { 
    color: #ffd24d; 
    font-size: var(--fs-2xl); 
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.section-title.center { 
    text-align: center; 
}

.section-lead { 
    color: var(--yellow-100); 
    font-size: 1.05rem; 
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 32px 0;
    text-align: left;
}

/* Mission */
.mission-grid { 
    display: grid; 
    grid-template-columns: 1fr 380px; 
    gap: 40px; 
    align-items: start; 
}

.mission-copy {
    text-align: left;
}

.mission-copy .section-title {
    text-align: center;
}

.mission-copy .section-lead {
    text-align: left;
}

.mission-points { 
    display: grid; 
    gap: 16px; 
    margin-top: 20px; 
}

.mission-points .point { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--yellow-100); 
    font-size: var(--fs-sm);
    font-weight: 300;
    text-align: left;
}

.mission-points .point i { 
    color: #00EBC7; 
    font-size: 20px;
    flex-shrink: 0;
}

.mission-card-inner { 
    height: 100%; 
    background: rgba(1,44,57,0.06); 
    border: 1px solid rgba(1,44,57,0.15); 
    border-radius: 16px; 
    padding: 24px; 
    color: var(--yellow-100);
}

.mission-card-inner h3 { 
    font-size: var(--fs-lg); 
    color: #ffd24d; 
    margin-bottom: 16px; 
    font-weight: 700;
}

.mission-card-inner ul { 
    list-style: none; 
    display: grid; 
    gap: 12px; 
}

.mission-card-inner li { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
    font-size: var(--fs-sm);
    font-weight: 300;
    text-align: left;
}

.mission-card-inner li i { 
    color: #00EBC7; 
}

/* Values */
.about-values { 
    background: linear-gradient(180deg, rgba(1,44,57,0.10), rgba(1,44,57,0)); 
}

.values-grid { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(0,1fr)); 
    gap: 24px; 
    margin-top: 32px; 
}

.value-card { 
    background: rgba(1,44,57,0.06); 
    border: 1px solid rgba(1,44,57,0.15); 
    border-radius: 16px; 
    padding: 24px; 
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.value-icon { 
    width: 50px; 
    height: 50px; 
    border-radius: 12px; 
    background: linear-gradient(135deg, #00EBC7 0%, #00d4aa 100%); 
    color: #012c39; 
    display: grid; 
    place-items: center; 
    margin: 0 auto 16px; 
}

.value-card h3 { 
    font-size: var(--fs-lg); 
    color: #ffd24d; 
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p { 
    font-size: var(--fs-sm); 
    color: var(--yellow-100); 
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
}

/* Approach / timeline */
.about-section.about-approach {
    position: relative;
}


.about-section.about-approach .about-container {
    background: rgba(1, 44, 57, 0.06);
    border: 1px solid rgba(1, 44, 57, 0.15);
    border-radius: 16px;
    padding: 28px 24px 32px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}


.about-section.about-approach .section-title.center {
    color: #ffd24d;
    margin-bottom: 8px;
}


.about-section.about-approach .about-container p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 100; 
}
.timeline { 
    display: grid; 
    gap: 32px; 
    max-width: 900px; 
    margin: 40px auto 0; 
    position: relative;
}


.about-section.about-approach .timeline::before {
    content: none;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, #00EBC7, rgba(0, 235, 199, 0.3));
}

.step { 
    display: grid; 
    grid-template-columns: 60px 1fr; 
    gap: 24px; 
    align-items: start;
    position: relative;
}


.step::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #00EBC7, rgba(0, 235, 199, 0.2));
}

.dot { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    background: rgba(1,44,57,0.06); 
    border: 3px solid #00EBC7;
    color: #00EBC7; 
    display: flex;
    align-items: center;
    justify-content: center; 
    align-self: center;
    font-weight: 600;
    font-size: var(--fs-base);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 235, 199, 0.2);
}

.step-content {
    background: rgba(1,44,57,0.06);
    border: 1px solid rgba(1,44,57,0.15);
    border-radius: 16px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00EBC7 0%, #00d4aa 100%);
    color: #012c39;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.step-body h4 { 
    color: #ffd24d; 
    font-size: var(--fs-base); 
    margin: 0;
    font-weight: 600;
}

.step-body p { 
    color: rgba(255, 255, 255, 0.85); 
    font-size: var(--fs-sm); 
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}


.step-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin: 0;
    font-weight: 100;
    text-align: left;
}

/* Impact band */
.about-impact { 
    padding: 80px 0; 
    background: linear-gradient(180deg, rgba(1,44,57,0.10), rgba(1,44,57,0));
}

.impact-band { 
    display: grid; 
    grid-template-columns: repeat(4, minmax(0,1fr)); 
    gap: 20px; 
}

.about-impact .stat { 
    background: rgba(1,44,57,0.06); 
    border: 1px solid rgba(1,44,57,0.15); 
}

/* Final CTA */
.about-cta { 
    background: linear-gradient(180deg, rgba(1,44,57,0.10), rgba(1,44,57,0)); 
    padding-bottom: 80px; 
}

.cta-inner { 
    text-align: center; 
}

.cta-inner h2 { 
    color: #ffd24d; 
    font-size: var(--fs-2xl); 
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-inner p { 
    color: var(--yellow-100); 
    font-size: var(--fs-base);
    font-weight: 300;
    margin: 0 0 32px; 
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .mission-grid { 
        grid-template-columns: 1fr 320px; 
        gap: 32px;
    }
    .about-container {
        padding: 20px;
    }
}

@media (max-width: 860px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    .about-title {
        font-size: var(--fs-2xl);
    }
    .about-section {
        padding: 60px 0;
    }
    .hero-stats { 
        grid-template-columns: repeat(2, minmax(0,1fr)); 
    }
    .mission-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .values-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .impact-band { 
        grid-template-columns: repeat(2, minmax(0,1fr)); 
    }
}

@media (max-width: 600px) {
    .about-main {
        padding-top: 70px;
    }
    
    .about-hero {
        height: 50vh;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about-hero .about-container {
        padding: 40px 20px 20px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    
    .about-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem); /* Standardized for all pages */
        margin-bottom: 16px;
        line-height: 1.3;
        text-align: center;
        width: 100%;
        color: var(--yellow-600);
    }
    
    .about-subtitle {
        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
        margin-bottom: 24px;
        padding: 0;
        line-height: 1.6;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-ctas {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        padding: 14px 10px;
        min-width: 160px;
        font-size: clamp(0.85rem, 1.6vw, 0.95rem);
        white-space: nowrap;
    }
    
    .about-section, .about-stats, .about-impact {
        padding: 40px 0;
    }
    
    .hero-stats { 
        grid-template-columns: 1fr 1fr; 
        gap: 16px;
    }
    
    .values-grid { 
        grid-template-columns: 1fr; 
    }
    
    .impact-band { 
        grid-template-columns: 1fr 1fr; 
    }
    
    .timeline {
        gap: 24px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }
    
    .dot {
        width: 50px;
        height: 50px;
        font-size: var(--fs-sm);
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Extra-small phones: tighten typography and layouts further */
@media (max-width: 480px) {
    /* Hero scaling */
    .about-hero { 
        height: 48vh; 
        min-height: 500px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-hero .about-container { 
        padding: 35px 16px 20px 16px; 
        text-align: center; 
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    .about-title { 
        font-size: clamp(1.3rem, 5.5vw, 1.6rem); 
        margin-bottom: 14px; 
        margin-top: 0;
        line-height: 1.25;
        text-align: center;
        width: 100%;
    }
    .about-subtitle { 
        font-size: clamp(0.9rem, 4vw, 1rem); 
        margin-bottom: 22px; 
        line-height: 1.6;
        padding: 0;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    .hero-ctas { 
        gap: 12px;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .btn { 
        padding: 14px 10px; 
        min-width: 160px;
        font-size: clamp(0.85rem, 1.6vw, 0.95rem);
        white-space: nowrap;
    }

    /* Section paddings */
    .about-section, .about-stats, .about-impact { padding: 32px 0; }

    /* Stats grid/cards */
    .hero-stats { grid-template-columns: 1fr; gap: 12px; }
    .stat { padding: 16px; }
    .stat-number { font-size: clamp(1.1rem, 5vw, 1.3rem); }
    .stat-label { font-size: clamp(0.75rem, 3.2vw, 0.85rem); }

    /* Mission */
    .mission-grid { grid-template-columns: 1fr; gap: 24px; }
    .mission-card-inner { padding: 18px; }
    .mission-card-inner h3 { font-size: clamp(0.95rem, 3.8vw, 1.05rem); }
    .mission-card-inner li { font-size: clamp(0.8rem, 3.4vw, 0.9rem); }

    /* Values */
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 18px; }
    .value-icon { width: 42px; height: 42px; }
    .value-card h3 { font-size: clamp(0.95rem, 3.8vw, 1.05rem); }
    .value-card p { font-size: clamp(0.8rem, 3.4vw, 0.9rem); }

    /* Impact band */
    .impact-band { grid-template-columns: 1fr; gap: 12px; }

    /* Timeline */
    .timeline { gap: 20px; }
    .timeline::before { left: 22px; top: 50px; bottom: 50px; }
    .step { grid-template-columns: 44px 1fr; gap: 14px; }
    .dot { width: 44px; height: 44px; font-size: clamp(0.8rem, 3.6vw, 0.9rem); }
    .step-content { padding: 16px; }
    .step-icon { width: 24px; height: 24px; font-size: 12px; }
    .step-body h4 { font-size: clamp(0.9rem, 3.6vw, 1rem); }
    .step-body p { font-size: clamp(0.78rem, 3.2vw, 0.9rem); }

    /* CTA */
    .cta-inner h2 { font-size: clamp(1.1rem, 5vw, 1.3rem); }
    .cta-inner p { font-size: clamp(0.82rem, 3.6vw, 0.95rem); margin-bottom: 24px; }
}

@media (max-width: 400px) {
    /* Hero */
    .about-hero { 
        height: 45vh; 
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-hero .about-container { 
        text-align: center; 
        align-items: center;
        padding: 30px 12px 20px 12px;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    .about-title { 
        font-size: clamp(1.2rem, 5.8vw, 1.5rem); 
        margin-bottom: 12px; 
        margin-top: 0;
        line-height: 1.25;
        text-align: center;
        width: 100%;
    }
    .about-subtitle { 
        font-size: clamp(0.85rem, 4.2vw, 0.95rem); 
        margin-bottom: 20px; 
        line-height: 1.6;
        padding: 0;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    .hero-ctas {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .btn { 
        padding: 14px 10px; 
        min-width: 160px;
        font-size: clamp(0.85rem, 1.6vw, 0.95rem);
        white-space: nowrap;
    }

    /* Cards and lists */
    .stat { padding: 14px; }
    .mission-card-inner { padding: 16px; }
    .value-card { padding: 16px; }
    .value-icon { width: 38px; height: 38px; }
    .impact-band { gap: 10px; }

    /* Timeline */
    .timeline::before { left: 20px; top: 44px; bottom: 44px; }
    .step { grid-template-columns: 40px 1fr; gap: 12px; }
    .dot { width: 40px; height: 40px; font-size: clamp(0.75rem, 3.4vw, 0.85rem); }
    .step-content { padding: 14px; }
    .step-icon { width: 22px; height: 22px; font-size: 12px; }
}

/* Extra Small Mobile - About Page */
@media (max-width: 375px) {
    .about-hero {
        height: 43vh;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about-hero .about-container {
        padding: 28px 12px 20px 12px;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    
    .about-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem); /* Standardized for all pages */
        margin-bottom: 12px;
        margin-top: 0;
        line-height: 1.25;
        text-align: center;
        width: 100%;
        color: var(--yellow-600); /* Yellow color on mobile */
    }
    
    .about-subtitle {
        font-size: clamp(0.82rem, 4.4vw, 0.92rem);
        line-height: 1.6;
        margin-bottom: 18px;
        padding: 0;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-ctas {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        padding: 14px 10px;
        min-width: 160px;
        font-size: clamp(0.85rem, 1.6vw, 0.95rem);
        white-space: nowrap;
    }
}

/* Large Desktop - About Page */
@media (min-width: 1920px) {
    .about-hero {
        height: 65vh;
    }
    
    .about-container {
        max-width: 1600px;
    }
}
