/* =========================
   ABOUT US PAGE STYLES
   (Aligned with Events + Home system)
========================= */

body {
    background: #f4f6f8;
    color: var(--text-dark);
    overflow-x: hidden;
    
    padding-top: calc(var(--header-height) + 5px);
}


.about-page {
    background: #f6f8fb;
    min-height: 100vh;
    padding-bottom: 80px;
}

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

.about-hero {
    background: linear-gradient(135deg, #0b2545, #123c66);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.92;
}

/* =========================
   CONTAINER (match Events system)
========================= */

.about-page .g-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   SECTION TITLES
========================= */

.section-title {
    text-align: center;
    font-size: 28px;
    color: #0b2545;
    margin: 60px 0 25px;
    font-weight: 700;
}

/* =========================
   INFO CARD (single block sections)
========================= */

.about-card {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.about-card p {
    color: #444;
    line-height: 1.75;
    font-size: 15.5px;
}

/* =========================
   GRID SYSTEM (same as Events)
========================= */

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

/* =========================
   STANDARD CARD (shared system style)
========================= */

.card {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.card h3 {
    color: #0b2545;
    margin-bottom: 10px;
    font-size: 18px;
}

.card p {
    color: #555;
    line-height: 1.6;
    font-size: 14.5px;
}

/* =========================
   JOURNEY SECTION (CTA style like Home)
========================= */

.journey {
    background: #eef2f6;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin: 70px 0;
}

.journey h2 {
    color: #0b2545;
    margin-bottom: 15px;
    font-size: 26px;
}

.journey p {
    max-width: 850px;
    margin: 0 auto 25px;
    color: #444;
    line-height: 1.7;
}

/* =========================
   BUTTON (same system as Events/Home)
========================= */

.btn {
    display: inline-block;
    background: #d7263d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #b51f31;
}

/* =========================
   LEADERSHIP SECTION ALIGNMENT
========================= */

.home-leadership {
    margin-top: 60px;
}

/* Ensure leadership grid aligns with site system */
.home-leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 992px) {
    .home-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .home-leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= INTRO CARD ================= */
.about-intro-card {
    text-align:center;
    padding:60px 20px;
    background:#dfe9f3;
    border-radius:14px;
    margin-bottom:50px;
}

.about-intro-card h1{
    font-size:2.8rem;
    color:#0B2545;
    margin-bottom:15px;
}
.about-intro-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
}

/* ================= RED SECTION TITLES ================= */
.section-title-red {
    text-align: center;
    font-size: 2.3rem;
    color: #D7263D;
    margin: 60px 0 25px;
    font-weight: 700;
}