/* Stats Section */
.stats-section {
    padding: 7rem 5%;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}
