/* Stats Section - Classic Simple Design */
.stats-section {
    background: url("../images/stats-bg.png") no-repeat center/cover;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    max-width: 1300px;
    margin: auto;
    height: 282px;
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #fff;
    font-family: "Somar", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 23px;
    font-weight: 700;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 5px;
    color: white;
}

.stat-item p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        width: 95%;
        margin: 20px auto;
        height: auto;
        padding: 30px 20px;
    }

    .stats-overlay {
        flex-wrap: wrap;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 16px;
    }
}
