.stats-section {
    position: relative;
    background-image: url('https://static.vecteezy.com/system/resources/thumbnails/002/883/738/small/astrology-zodiac-sign-of-horoscope-in-deep-blue-the-star-and-the-moon-background-photo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: #ff5100;
}

.stats-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    width: 200px;
}

.stat-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon img {
    width: 100px;
    filter: invert(1); 
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff5100;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 80%;
        margin-bottom: 40px;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
    }

    .stat-icon img {
        width: 80px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stats-header h2 {
        font-size: 2rem;
    }
    
    .stats-header p {
        font-size: 1rem;
    }

    .stat-item {
        margin-bottom: 40px;
    }
}