/* Stats */
.stats-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.stats-text h3 {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-text h3 span {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.pie-container {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 900px) {
    .header-home-section {
        height: 45vh;
    }

    .stats-overlap {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-text h3 {
        font-size: 3rem;
        justify-content: center;
    }

    .stats-text h3 span {
        font-size: 1.2rem;
    }
}