/* =========================
   ABOUT US PAGE
   ========================= */

<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet" />
<style type="text/css">.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HERO */

.about-hero {
    text-align: center;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.about-hero p {
    background: #d6c56a;
    padding: 30px;
    border-radius: 16px;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* DIVIDER */

.section-divider {
    width: 120px;
    height: 4px;
    background: #d6c56a;
    margin: 50px auto;
    border-radius: 999px;
}

/* MISSION / STRATEGIC APPROACH */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.about-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    border-top: 5px solid #d6c56a;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.about-card h2,
.org-card h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.about-card h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-card h2 i,
.org-card h2 i {
    color: #c9ae3b;
    margin-right: 10px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.7;
}

/* ORGANIZATION */

.org-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    border-top: 5px solid #d6c56a;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.org-card h2 {
    font-size: 48px;
}

.org-card img {
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    cursor: zoom-in;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: all .3s ease;
}

.org-card img:hover {
    transform: scale(1.02);
}

/* CAPABILITIES */

.capabilities-section h2 {
    font-size: 52px;
    margin-bottom: 10px;
}

.capabilities-intro {
    font-size: 20px;
    margin-bottom: 30px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
}

.capability-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border-top: 5px solid #d6c56a;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.capability-icon {
    font-size: 42px;
    color: #c9ae3b;
    margin-bottom: 12px;
}

.capability-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
}

.capability-card p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* MOBILE */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 22px;
    }

    .about-card h2,
    .org-card h2 {
        font-size: 36px;
    }

    .capabilities-section h2 {
        font-size: 40px;
    }
}


/* =========================
   ACI LEADERSHIP PAGE
   ========================= */

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HERO */

.about-hero {
    text-align: center;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.about-hero p {
    background: #d6c56a;
    padding: 30px;
    border-radius: 16px;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* SECTION DIVIDER */

.section-divider {
    width: 120px;
    height: 4px;
    background: #d6c56a;
    margin: 50px auto;
    border-radius: 999px;
}

/* FEATURED DIRECTOR */

.director-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    border-top: 5px solid #d6c56a;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    max-width: 1000px;
    margin: 0 auto 50px auto;
    transition: all .3s ease;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.director-card h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 42px;
}

.director-card img {
    max-width: 350px;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: all .3s ease;
}

.director-card img:hover {
    transform: scale(1.02);
}

.director-name {
    margin-top: 25px;
    font-size: 34px;
    font-weight: 700;
}

.director-title {
    margin-top: 10px;
}

.role-badge {
    display: inline-block;
    background: #d6c56a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

/* LEADERSHIP TEAM */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 30px;
}

.leadership-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border-top: 5px solid #d6c56a;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    text-align: center;
    transition: all .3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.leadership-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: all .3s ease;
}

.leadership-card:hover img {
    transform: scale(1.02);
}

.leadership-content {
    padding: 24px;
}

.leadership-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.leadership-title {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}

/* LINKS */

.leadership-grid a,
.director-card a {
    color: inherit;
    text-decoration: none;
}

/* MOBILE */

@media (max-width: 900px) {

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 22px;
    }

    .director-card {
        padding: 25px;
    }

    .director-card h2 {
        font-size: 34px;
    }

    .director-card div[style*="display:flex"] {
        flex-direction: column;
    }

    .director-name {
        font-size: 28px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}