
    .st_container {
        max-width: 1400px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .st_header {
        margin-bottom: 40px;
    }

    .st_header h1 {
        font-size: 32px;
        color: #2d3748;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 4px solid #667eea;
        display: inline-block; 
    }

    .description {
        color: #4a5568;
        font-size: 16px;
        line-height: 1.6;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .description strong {
        color: #2d3748;
        font-size: 18px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .stat-card {
        background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 2px solid #e2e8f0;
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #059669);
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        border-color: #10b981;
    }

    .stat-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .stat-title {
        font-size: 14px;
        font-weight: 600;
        color: #718096;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .stat-content {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #10b981;
        line-height: 1;
    }

    .stat-label {
        font-size: 14px;
        color: #718096;
        margin-top: 8px;
    }

    .nav-buttons {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 2px solid #e2e8f0;
        background: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        font-size: 18px;
        color: #718096;
    }

    .nav-btn:hover {
        border-color: #10b981;
        color: #10b981;
        background: #f0fdf4;
    }

    .more-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 24px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }

        .container {
            padding: 20px;
        }

        .header h1 {
            font-size: 24px;
        }

        .stat-number {
            font-size: 36px;
        }
    }

    .carousel-content {
        min-height: 80px;
        transition: opacity 0.3s ease;
    }

    .carousel-content.fade {
        opacity: 0;
    }

    .region-name {
        font-size: 14px;
        color: #667eea;
        font-weight: 600;
        margin-top: 12px;
        padding: 6px 12px;
        background: #f0f4ff;
        border-radius: 6px;
        display: inline-block;
    }