:root {
    --gold: #FFD700;
    --navy: #232B38;
    --white: #fff;
    --light-bg: #F8F9FA;
    --gray: #6C757D;
    --font-main: 'Poppins', 'Montserrat', Arial, sans-serif;
}

/* About Page Hero */
.about-hero {
    min-height: 60vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 60px 0 40px 0;
    position: relative;
}
.about-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35,43,56,0.8);
}
.about-hero > div {
    position: relative;
    z-index: 1;
}
.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--gold);
    font-family: var(--font-main);
}
.about-hero .btn {
    font-size: 1.2rem;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    box-shadow: 0 4px 24px rgba(35,43,56,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.about-hero .btn:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(35,43,56,0.18);
}

/* Section backgrounds */
.about-section {
    background: var(--light-bg);
    padding: 60px 0;
}
.about-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy);
    font-family: var(--font-main);
}
.about-section .section-subtitle {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Mission, Vision, Values */
.mv-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.mv-card:hover {
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
    transform: translateY(-6px) scale(1.03);
}
.mv-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Team Section */
.team-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    text-align: center;
    padding: 2rem 1rem 1.5rem 1rem;
    background: var(--white);
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
    transform: translateY(-6px) scale(1.03);
}
.team-card img {
    border-radius: 50%;
    width: 110px;
    height: 110px;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(35,43,56,0.08);
}
.team-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    font-family: var(--font-main);
}
.team-card .text-muted {
    font-size: 0.95rem;
    color: var(--gray) !important;
}
.team-card .social a {
    color: var(--gold);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.team-card .social a:hover {
    color: var(--navy);
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(90deg, var(--gold) 0%, #ffe066 100%);
    color: var(--navy);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(35,43,56,0.12);
    position: relative;
}
.about-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-main);
}
.about-cta-btn {
    border-radius: 30px;
    font-size: 1.2rem;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    margin-top: 1rem;
    background: var(--navy);
    color: var(--gold);
    border: none;
    box-shadow: 0 4px 24px rgba(35,43,56,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.about-cta-btn:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(35,43,56,0.18);
}

/* Making a Difference (Stats) Section */
.about-difference-section {
    background: var(--light-bg);
}
.stat-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
}
.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
}
.stat-icon i {
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(35,43,56,0.08));
}
.stat-number {
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 700;
    font-family: var(--font-main);
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .about-hero h1 { font-size: 2rem; }
    .about-section .section-title { font-size: 1.5rem; }
    .about-cta-section h2 { font-size: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
}