/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c10510 100%);
    color: white;
    text-align: center;
}

.stats-section .section-title {
    color: white;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.history-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

.history-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.history-text p {
    margin-bottom: 20px;
}

.history-text p:last-child {
    margin-bottom: 0;
}

/* No content message */
.no-content {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    grid-column: 1 / -1;
    color: var(--text-color);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .history-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .stat-icon {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}