
    /* Base Styles */
    .commodity-success-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: white;
    }
    
    /* Header Styles */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .animated-underline {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #00d2ff, #3a7bd5);
        margin: 0 auto 15px;
    }
    
    .tagline {
        font-size: 1rem;
        opacity: 0.9;
    }
    
    /* Stats Panel */
    .stats-panel {
        padding: 20px;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .stat-item {
        margin: 15px 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, #00d2ff, #3a7bd5);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .stat-label {
        font-size: 0.85rem;
        opacity: 0.8;
    }
    
    .stat-divider {
        height: 1px;
        background: rgba(255,255,255,0.1);
    }
    
    /* Case Studies Carousel */
    .case-studies-carousel {
        display: flex;
        gap: 15px;
        padding: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .case-card {
        min-width: 280px;
        max-width: 300px;
        scroll-snap-align: start;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.1);
        flex-shrink: 0;
    }
    
    .case-media {
        position: relative;
        height: 160px;
    }
    
    .case-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .case-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 3px 10px;
        border-radius: 16px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .case-content {
        padding: 15px;
    }
    
    .case-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .case-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
        opacity: 0.9;
    }
    
    .case-meta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .tonnage, .route {
        font-size: 0.75rem;
        padding: 3px 6px;
        border-radius: 3px;
    }
    
    .tonnage {
        background: rgba(0,210,255,0.1);
        color: #00d2ff;
    }
    
    .route {
        background: rgba(58,123,213,0.1);
        color: #3a7bd5;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .row {
            flex-direction: column;
        }
        
        .stats-panel {
            margin-bottom: 25px;
        }
        
        .case-card {
            min-width: 260px;
        }
    }
    
    @media (max-width: 768px) {
        .commodity-success-section {
            padding: 40px 0;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
        
        .case-media {
            height: 140px;
        }
        
        .case-card {
            min-width: 240px;
        }
    }
