.industry-impact-stat-block {
    padding: 10px 0 30px 0;
}

.industry-impact-stat-block .container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.industry-impact-stat-block .stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

/* Individual Stat Item */
.industry-impact-stat-block .stat-item {
    text-align: center;
    flex: 1;
    max-width: 350px;
}

.industry-impact-stat-block .stat-text {
    font-family: 'Campton', sans-serif;
    font-size: clamp(4.6875rem, 5.1834rem + -2.4793vw, 2.8125rem);
    line-height: 1;
    font-weight: 900;
    color: #044BD0;
}

.industry-impact-stat-block .stat-label {
    font-family: 'Campton', sans-serif;
    font-size: clamp(1.125rem, 0.9267rem + 0.9917vw, 1.875rem);
    line-height: 1.1;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
}

.industry-impact-stat-block .stat-label-2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Center Stat - Sphere Effect */
.industry-impact-stat-block .stat-item-center {
    flex: none;
}

.industry-impact-stat-block .sphere {
    width: 400px;
    height: 400px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        inset 0 40px 60px rgba(0, 0, 0, 0.15),
        inset 0 20px 30px rgba(0, 0, 0, 0.1),
        inset 0 -10px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .industry-impact-stat-block .stats-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .industry-impact-stat-block .stat-item {
        max-width: 100%;
    }

    .industry-impact-stat-block .sphere {
        width: 350px;
        height: 350px;
    }

    .industry-impact-stat-block .stat-text {
        font-size: 80px;
    }

    .industry-impact-stat-block .stat-label {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .industry-impact-stat-block {
        padding: 40px 0;
    }

    .industry-impact-stat-block .stats-wrapper {
        gap: 30px;
    }

    .industry-impact-stat-block .sphere {
        width: 300px;
        height: 300px;
    }

    .industry-impact-stat-block .stat-text {
        font-size: 60px;
    }

    .industry-impact-stat-block .stat-label {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .industry-impact-stat-block .sphere {
        width: 260px;
        height: 260px;
    }

    .industry-impact-stat-block .stat-text {
        font-size: 48px;
    }

    .industry-impact-stat-block .stat-label {
        font-size: 18px;
    }
}