/* Footer Section */
.site-footer {
    background: linear-gradient(to bottom, #000000, #333333); /* Gradient for footer */
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 50px; /* Add space above the footer */
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    padding-bottom: 10px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Spacing between links */
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: #FFD700; /* Call-to-action yellow */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFC300; /* Slightly darker yellow on hover */
    text-decoration: underline;
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
        padding: 20px;
    }

    .footer-links {
        flex-wrap: wrap; /* Wrap links for smaller screens */
        gap: 10px; /* Adjust spacing */
    }

    .footer-links a {
        font-size: 0.9rem; /* Slightly smaller text for links */
    }
}