/* =========================================
   STANDARDIZED PAGE HERO BANNER
   ========================================= */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 450px;
    padding-top: 80px;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 70, 50, 0.82);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #efe5db;
    letter-spacing: 4px;
    margin: 0;
}

/* =========================================
   TIMELINE SECTION (OPEN VERTICAL FLOW)
   ========================================= */
.history-timeline-section {
    background-color: #ffffff;
    padding: 100px 5%;
}

.history-container {
    max-width: 1100px;
    margin: 0 auto;
}

.history-intro {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 15px;
}

.history-intro h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.1;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1c4632;
    opacity: 0.3;
    line-height: 1;
    min-width: 120px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
}

/* =========================================
   IMPACT STATS SECTION (WHITE BACKGROUND)
   ========================================= */
.history-stats-section {
    background-color: #ffffff;
    padding: 40px 5% 100px;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
}

.stats-header h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-col {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    color: #1c4632;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1c4632;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* =========================================
   CALL TO ACTION SECTION (BEIGE BACKGROUND)
   ========================================= */
.history-cta-section {
    background-color: #efe5db;
    padding: 110px 5%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .page-hero-banner {
        height: 320px;
        padding-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        font-size: 2.2rem;
        min-width: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .history-intro h2,
    .cta-container h2 {
        font-size: 2rem;
    }

    .history-cta-section {
        padding: 80px 5%;
    }
}