﻿/*=================================
            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: #0e2a55;
    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: #0e2a55;
        font-size: 48px;
        margin-bottom: 10px;
    }

    .stat-card span {
        color: #666;
        font-size: 20px;
    }

/*=================================
        Business Overview
==================================*/

.overview-section {
    padding: 90px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.overview-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-sm);
}

    .overview-card h3 {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 23px;
        color: var(--primary);
        margin-bottom: 15px;
    }

.overview-intro {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .overview-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--black);
        font-size: 15.5px;
        line-height: 1.6;
    }

        .overview-list li i {
            color: var(--success);
            margin-top: 4px;
            flex-shrink: 0;
        }

@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}
