/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.stat-card:hover small {
    text-decoration: underline;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff9933;
}

.stat-label {
    color: #666;
    margin-top: 10px;
    font-weight: bold;
}

.stat-card small {
    display: block;
    margin-top: 10px;
    color: #ff9933;
    font-size: 0.8em;
}