.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, var(--antracit), var(--background));
    color: var(--white);
}

.stats-section h1 {
    text-align: center;
    color: var(--yellow);
    margin-bottom: 3rem;
    font-size: 2.5em;
    position: relative;
}

.stats-section h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.stat-card {
    background: rgba(51, 51, 51, 0.8);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 184, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--yellow);
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--yellow);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.stat-text {
    font-size: 1.2em;
    color: var(--white);
    line-height: 1.6;
}

.stat-icon {
    font-size: 2.5em;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .stats-section h1 {
        font-size: 2em;
    }
}