#counter-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 80px 0;
        color: white;
        text-align: center;
    }

    .counter-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        width: 100%;
        margin: 0 auto;
    }

    .counter-box {
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .counter-box:hover {
        transform: translateY(-10px);
        background: rgba(230, 126, 34, 0.2);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .counter-box i {
        font-size: 3rem;
        color: #e67e22;
        margin-bottom: 20px;
    }

    .counter-box .counter {
        display: inline-block;
        font-size: 3rem;
        font-weight: 700;
        margin: 0 5px;
    }

    .counter-box span {
        font-size: 2rem;
        font-weight: 700;
        color: #e67e22;
    }

    .counter-box p {
        margin-top: 15px;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    @media (max-width: 768px) {
        .counter-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .counter-wrapper {
            grid-template-columns: 1fr;
        }
        
        .counter-box {
            padding: 30px 15px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
        }
        
        .counter-box .counter {
            font-size: 2.5rem;
        }
    }