/* --- About Page Hero Banner --- */
.about-hero {
    background: linear-gradient(rgba(0, 34, 68, 0.9), rgba(0, 34, 68, 0.9)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 5px solid #d9232d;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #e6f2ff;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: #d9232d;
    margin: 1.5rem auto;
}

/* --- Shared Small Dividers --- */
.small-divider {
    height: 3px;
    width: 50px;
    background-color: #d9232d;
    margin: 1rem auto 1.5rem auto;
}

.small-divider-left {
    height: 3px;
    width: 50px;
    background-color: #d9232d;
    margin: 1rem 0 1.5rem 0;
}

/* --- Who We Are Section (2 Columns) --- */
.who-we-are {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-side h2 {
    font-size: 2.2rem;
    color: #002244;
}

.about-text-side p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.about-image-side {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
    min-height: 300px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
    padding: 5rem 0 6rem;
    background-color: #f4f7f6;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid #002244;
    transition: transform 0.3s ease, border-top 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-top: 5px solid #d9232d;
}

.mv-icon-box {
    margin: 0 auto 1.5rem auto;
    width: 80px;
    height: 80px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon {
    width: 40px;
    height: 40px;
    stroke: #002244;
}

.mv-card h3 {
    color: #002244;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Authority & Mandate Section --- */
.authority-section {
    padding: 6rem 0;
    background-color: #002244;
    color: #ffffff;
}

.authority-header {
    text-align: center;
    margin-bottom: 4rem;
}

.authority-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
}

.authority-header > p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #e6f2ff;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.auth-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.auth-box h4 {
    color: #ffcc00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.auth-box p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Committee Section (New!) --- */
.committee-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #002244;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.committee-card {
    background: #fdfdfd;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px solid #eeeeee;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-5px);
    border-color: #002244;
}

.chairperson-card {
    border-color: #ffcc00;
    background-color: #fffdf5;
}

.member-role {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.member-role.chairperson {
    background-color: #d9232d;
    color: #ffffff;
}

.committee-card h4 {
    font-size: 1.3rem;
    color: #002244;
    margin-bottom: 0.5rem;
}

.committee-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
}