/* About Section Styles */
.site-section.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 80px 0;
}

.about-header {
    margin-bottom: 20px;
}

.about-desc {
    color: #4a5568;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 28px;
}

.about-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 28, 122, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 5px solid #0f1c7a;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 28, 122, 0.2);
}

.vision-card {
    border-top-color: #0f1c7a;
}

.mission-card {
    border-top-color: #01894b;
}

.about-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-card h4 {
    color: #0f1c7a;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 24px;
}

.about-card p {
    color: #4a5568;
    line-height: 28px;
    margin-bottom: 0;
}

.stats-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    padding: 35px 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(15, 28, 122, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 28, 122, 0.15);
    border-color: #0f1c7a;
}

.stats-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.stats-number {
    color: #0f1c7a;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}

.stats-label {
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .about-card {
        margin-bottom: 20px;
    }
    
    .stats-card {
        margin-bottom: 15px;
    }
}
