/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: absolute;  /* Position at the bottom of the page */
    bottom: 0;
    left: 0;
}

/* Footer Links and Social Media Styling */
.footer-container {
    display: flex;
    justify-content: center;
    gap: 20px;  /* Space between the links */
    align-items: center;
}

.footer-links a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #FFD700;
}

footer p {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-links a, .footer-social a {
        margin-bottom: 10px;
    }
}
