/* --- SITE FOOTER --- */
.site-footer {
    width: 100%;
    padding: 50px 20px;
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: white;
    text-align: center;
    margin-top: auto; /* Keeps it at the bottom of the page */
}

.footer-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap; /* Ensures it looks good on mobile */
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}