.stats {
    margin-top: 100px;
}

.stats h2 {
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    
    margin-bottom: 70px;
    color: #1F2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    background: white;
    border-radius: 24px;
    min-height: 340px;
    padding: 40px 32px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    transition: .35s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(0,0,0,.22);
}

.stat-icon {
    font-size: 64px;
    font-weight: 700;
    color: #1F3A5F;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #1F3A5F;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 30px;
    color: #1F3A5F;
    text-align: center;
    margin: 0;
}

.stat-card p {
    margin-top: 25px;
    text-align: center;
    font-size: 16px;
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    color: #1F3A5F;
    line-height: 1.5;
    max-width: 300px;
}