
    .hero-section {
        padding: 80px 20px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                          url('https://images.unsplash.com/photo-1530549387789-4c1017266635?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        display: inline-block;
    }
    
    .hero-title::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background: #FCB72A;
        bottom: -10px;
        left: 25%;
    }
    
    .chart-container {
        max-width: 800px;
        margin: 60px auto 0;
        padding: 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .simple-bar-chart {
        --line-count: 10;
        --line-color: rgba(255, 255, 255, 0.5);
        --line-opacity: 0.25;
        --item-gap: 5%;
        --item-default-color: #060606;
        
        height: 200px;
        display: grid;
        grid-auto-flow: column;
        gap: var(--item-gap);
        align-items: end;
        padding-inline: var(--item-gap);
        --padding-block: 2.5rem;
        padding-block: var(--padding-block);
        position: relative;
        isolation: isolate;
    }
    
    .simple-bar-chart::after {
        content: "";
        position: absolute;
        inset: var(--padding-block) 0;
        z-index: -1;
        --line-width: 1px;
        --line-spacing: calc(100% / var(--line-count));
        background-image: repeating-linear-gradient(to top, transparent 0 calc(var(--line-spacing) - var(--line-width)), var(--line-color) 0 var(--line-spacing));
        box-shadow: 0 var(--line-width) 0 var(--line-color);
        opacity: var(--line-opacity);
    }
    
    .simple-bar-chart > .item {
        height: calc(1% * var(--val));
        background: linear-gradient(to top, var(--clr), var(--clr-light));
        position: relative;
        animation: item-height 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        border-radius: 5px 5px 0 0;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }
    
    .simple-bar-chart > .item:hover {
        transform: scaleY(1.05) scaleX(1.1);
        z-index: 2;
    }
    
    @keyframes item-height { from { height: 0 } }
    
    .simple-bar-chart > .item > * { 
        position: absolute; 
        text-align: center;
        width: 100%;
    }
    
    .simple-bar-chart > .item > .label { 
        bottom: -40px;
        font-size: 0.9rem;
        font-weight: 600;
        color: white;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .simple-bar-chart > .item > .value { 
        top: -30px;
        font-size: 1rem;
        font-weight: 700;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        padding: 3px 8px;
        border-radius: 15px;
        display: inline-block;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .chart-container {
            padding: 20px 10px;
            margin-top: 30px;
        }
        
        .simple-bar-chart {
            height: 250px;
        }
        
        .simple-bar-chart > .item > .label {
            font-size: 0.7rem;
            bottom: -30px;
        }
    }