/* =========================================
   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;
}

/* =========================================
   ORIGIN SECTION
   ========================================= */
.origin-section {
    background-color: #ffffff;
    padding: 100px 5%;
}

.origin-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.origin-text-column {
    flex: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 15px;
}

.origin-text-column h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 25px;
    line-height: 1.1;
}

.origin-text-column p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
}

.origin-graphic-column {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.origin-vector-art {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

/* =========================================
   MISSION & VISION SECTION
   ========================================= */
.mission-vision-section {
    background-color: #ffffff;
    padding: 40px 5% 100px;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.mv-col {
    display: flex;
    flex-direction: column;
}

.mv-num {
    font-size: 3rem;
    font-weight: 900;
    color: #1c4632;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 10px;
}

.mv-col h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 15px;
}

.mv-line {
    width: 60px;
    height: 3px;
    background-color: #1c4632;
    margin-bottom: 25px;
}

.mv-col p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
}

/* =========================================
   TRANSPARENCY SECTION
   ========================================= */
.transparency-section {
    background-color: #ffffff;
    padding: 60px 5% 110px;
}

.transparency-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.transparency-container h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.transparency-sub {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c4632;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transparency-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
}

/* =========================================
   MONTHLY GUARDIANS SUSTAINED GIVING SECTION
   ========================================= */
.monthly-giving-section {
    background-color: #efe5db;
    padding: 110px 5%;
}

.monthly-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.monthly-container h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 15px;
}

.monthly-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 40px;
}

.monthly-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.monthly-btn {
    background-color: #ffffff;
    color: #1c4632;
    border: 2px solid #1c4632;
    padding: 18px 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
}

.monthly-btn:hover {
    background-color: #1c4632;
    color: #efe5db;
}

.monthly-btn.active {
    background-color: #1c4632;
    color: #efe5db;
    border-color: #1c4632;
}

.monthly-action {
    display: flex;
    justify-content: center;
}

.monthly-checkout-link {
    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;
    }

    .origin-container {
        flex-direction: column;
        gap: 40px;
    }

    .origin-text-column h2 {
        font-size: 2.2rem;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .transparency-section,
    .monthly-giving-section {
        padding: 80px 5%;
    }

    .transparency-container h2,
    .monthly-container h2 {
        font-size: 2rem;
    }

    .monthly-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}