/* AboutCounts Section - Full Width with Transparent Boxes */
.about-counts-section {
    width: 100%;
    height: 166px;
    background: linear-gradient(90deg, #E62D5B 0%, #60C6C8 100%),
        #17687F;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    display: none;
    position: relative;
}

.about-counts-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 20px;
}

/* Individual Count Box */
.count-box {
    width: 312px;
    height: 102px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Number Styling */
.count-number {
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Text Styling */
.count-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .about-counts-container {
        padding: 0 30px;
        gap: 15px;
    }

    .count-box {
        width: 280px;
        height: 102px;
    }

    .count-number {
        font-size: 54px;
        line-height: 65px;
    }

    .count-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .about-counts-section {
        height: auto;
        padding: 40px 0;
    }

    .about-counts-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .count-box {
        width: 100%;
        max-width: 312px;
        height: 75px;
    }

    .count-number {
        font-size: 48px;
        line-height: 58px;
    }

    .count-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .about-counts-section {
        padding: 30px 0;
    }

    .about-counts-container {
        padding: 0 16px;
        gap: 25px;
    }

    .count-box {
        height: 75px;
    }

    .count-number {
        font-size: 42px;
        line-height: 50px;
    }

    .count-text {
        font-size: 14px;
    }
}