/* Stats Section */
.stats {
    max-width: 900px;
    margin: auto;
}

/* Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Stat Card */
.stat-card {
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

/* Hover Effect */
.stat-card:hover {
    transform: translateY(-5px);
}

/* Different Colors */
.stat-card.blue { background-color: #3498db; }   /* Blue */
.stat-card.green { background-color: #2ecc71; } /* Green */
.stat-card.yellow { background-color: #f1c40f; } /* Yellow */
.stat-card.red { background-color: #e74c3c; }    /* Red */

/* Stat Number */
.stat-number {
    font-size: 2rem;
    margin-top: 10px;
}