/* Statistics Section */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    text-align: center;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.stat-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
    flex: 1 1 calc(33.33% - 20px); /* Default: 3 items per row */
    box-sizing: border-box;
}

.stat-card p:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #4ab1dd;
    margin-bottom: 10px;
}

.stat-card p:last-child {
    font-size: 1rem;
    color: #555;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-container div {
    flex: 1 1 calc(33.33% - 20px); /* Default: 3 items per row */
    margin-bottom: 20px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

.footer p, .footer ul, .footer li {
    margin: 5px 0;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

/* Footer Links */
.footer a {
    color: white; /* Set link color to white */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Add a smooth transition effect */
}

.footer a:hover {
    color: #FFD700; /* Change color to gold on hover */
    text-decoration: underline; /* Add underline on hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 12px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; /* Stack statistics vertically */
        align-items: center;
    }

    .stat-card {
        width: 100%; /* Full width for smaller screens */
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column; /* Stack footer sections vertically */
        align-items: center;
    }

    .footer-container div {
        width: 100%; /* Full width for smaller screens */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stat-card p:first-child {
        font-size: 1.5rem; /* Reduce font size for very small screens */
    }

    .stat-card p:last-child {
        font-size: 0.9rem; /* Reduce font size for very small screens */
    }

    .footer {
        font-size: 12px; /* Reduce font size for very small screens */
    }
}