/**
 * NAPSA at a Glance Section Styles
 */

.napsa-glance-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 30px 0;
}

.section-title {
    color: #2B2F7E; /* NAPSA Blue */
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: #F0AD4E; /* NAPSA Gold */
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.stats-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stats-title {
    color: #2B2F7E;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.stats-icon {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

.stats-number {
    color: #F0AD4E;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.stats-unit {
    font-size: 1.5rem;
    font-weight: 500;
}

.stats-description {
    color: #495057;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 20px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-unit {
        font-size: 1.2rem;
    }
}
