﻿
.about-section {
    padding: 60px 0;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

    .about-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-hero p {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-section {
    padding: 60px 0;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

    .leader-card:hover {
        transform: translateY(-10px);
    }

.leader-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.leader-position {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 10px;
}

.leader-org {
    font-size: 0.9rem;
    color: #95a5a6;
}

.mission-vision {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mission-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .mission-card h3 {
        color: #667eea;
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .mission-card p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
    }

    .mission-card ul {
        list-style: none;
        padding: 0;
    }

        .mission-card ul li {
            padding: 10px 0;
            font-size: 1.05rem;
            color: #555;
            position: relative;
            padding-left: 30px;
        }

            .mission-card ul li:before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #667eea;
                font-weight: bold;
                font-size: 1.2rem;
            }

.contact-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

    .contact-box h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .contact-box p {
        margin-bottom: 10px;
        line-height: 1.8;
    }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto;
    }

