.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background-color: #121212;
    color: #fff;
}

.stats-left {
    flex: 1;
    text-align: center;
}

.stats-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff5722;
}

.stats-year {
    font-size: 80px;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 20px;
}

.stats-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stats-right {
    flex: 1;
    padding-left: 40px;
    text-align: center;
}

.stats-tagline {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ff5722;
}

.stats-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.stats-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .stats-right {
        padding-left: 0;
    }

    .stats-heading {
        font-size: 24px;
    }

    .stats-description {
        font-size: 14px;
    }

    .stat-box {
        padding: 15px;
    }

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