.banner-section {
    position: relative;
    width: 100%;
}

.stats-container {
    width: 100%;
    height: auto;
    background-color: #000000;
    padding: 40px 0;
    margin-top: 80px;
}

.stats-container-content {
    max-width: var( --container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    flex-wrap: wrap;
    gap: 10px;
}

.stats-container p {
    color: white;
    font-size: 1.2rem;
    text-align: left;
}

.stats-container h2 {
    color: #f3702a;
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 0;
}

.section-title-bottom-banner {
    font-family: 'Kleemax Demo', sans-serif;
    text-align: center;
    font-size: 1.3rem;
    background: linear-gradient(-90deg, var(--accent-orange), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .stats-container {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .stats-container-content {
        align-items: center; /* Center content horizontally */
        text-align: center; /* Center text alignment */
        gap: 15px;
        padding: 0 20px;
    }
    
    .stats-container p {
        text-align: center; /* Center paragraph text */
        font-size: 1.1rem;
        width: 100%; /* Ensure full width for proper centering */
    }
    
    .stats-container h2 {
        text-align: center; /* Center heading text */
        font-size: 2.2rem;
        width: 100%; /* Ensure full width for proper centering */
    }
    
    .section-title-bottom-banner {
        font-size: 1.1rem;
        text-align: center; /* Already centered, but keeping for consistency */
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .stats-container {
        padding: 25px 0;
        margin-top: 40px;
    }
    
    .stats-container-content {
        padding: 0 15px;
        gap: 12px;
    }
    
    .stats-container p {
        font-size: 1rem;
    }
    
    .stats-container h2 {
        font-size: 1.8rem;
    }
    
    .section-title-bottom-banner {
        font-size: 1rem;
    }
}