/* Stats Section Styling */
.stats-section {
    background-color: #F4CE6A;
    padding: 60px 20px;
}

.stats-container {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 450px;
    padding-right: 60px;
}

.stats-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 50px;
    max-width: 1000px;
    line-height: 1.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    margin-bottom: 40px;
    max-width: 750px;
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 30px;
}

.stat-arrow {
    position: absolute;
    left: 0;
    top: 10px;
    width: 2px;
    height: 80px;
    background-color: #000;
}

.stat-arrow::before,
.stat-arrow::after {
    content: '';
    position: absolute;
    left: -3px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.stat-arrow::before {
    top: -8px;
    border-bottom: 8px solid #000;
}

.stat-arrow::after {
    bottom: -8px;
    border-top: 8px solid #000;
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #0f0f0f;
    line-height: 1.4;
    font-weight: 400;
}

.stats-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    max-width: 750px;
    margin-top: 30px;
}

/* Responsive Design for Stats Section */
@media (max-width: 1024px) {
    .stats-section {
        padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
    }

    .stats-container {
        padding-inline: clamp(1rem, 5vw, 2rem);
    }

    .stats-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 2rem;
        text-align: center;
        line-height: 1.2;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: clamp(1.5rem, 4vw, 2.5rem);
        justify-items: center;
        max-width: 100%;
    }

    .stat-number {
        font-size: clamp(2rem, 5vw, 2.5rem);
        font-weight: 700;
        color: #000;
        text-align: center;
    }

    .stat-label {
        font-size: clamp(0.85rem, 2vw, 1rem);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #141414;
        text-align: center;
    }

    .stats-description {
        max-width: 700px;
        margin: 1rem auto 0;
        text-align: center;
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        color: #181818;
    }
}

@media (max-width: 480px) {
    .stats-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
}