﻿.about-intro-section {
    background-color: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
}

.about-intro-container {
    max-width: 800px;
    margin: auto;
}

    .about-intro-container h1 {
        font-size: 2.5rem;
        color: #003b5c;
        margin-bottom: 1rem;
    }

    .about-intro-container p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.7;
    }


/* ===== Stats Section ===== */
.about-stats-section {
    background-color: #f1f6f9;
    padding: 4rem 1rem;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.stat-box {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .stat-box:hover {
        transform: scale(1.05);
    }

    .stat-box h3 {
        font-size: 2.5rem;
        color: #e65c0d;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .stat-box p {
        font-size: 1.05rem;
        color: #003b5c;
        font-weight: 500;
    }
