/* footer.css */

/* Footer Styles */
.footer {
    background: #333;
    color: black;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footer h2, .footer h3 {
    margin: 10px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-links,
.social-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a,
.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.social-links a:hover {
    color: #ffeb3b;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 10px 0;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-links,
    .social-links {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
