﻿/*=================================
            About Page
==================================*/

.about-page {
    padding: 90px 0;
    background: #f8f9fc;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

    .about-image img {
        width: 100%;
        border-radius: 22px;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

.section-subtitle {
    color: #2d248d;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-text h1 {
    font-size: 58px;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 22px;
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
}

/*=================================
            About Stats
==================================*/

.about-stats {
    padding: 80px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .stat-card:hover {
        transform: translateY(-10px);
    }

    .stat-card h2 {
        color: #2d248d;
        font-size: 48px;
        margin-bottom: 10px;
    }

    .stat-card span {
        color: #666;
        font-size: 20px;
    }
