/* Footer specific styles */
footer {
    background-color: var(--color-text-dark);
    color: white;
    padding: 2rem 1rem;
    margin-top: 2rem;
    justify-content: end;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

footer .footer-info {
    flex: 1;
    min-width: 200px;
}

footer .footer-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

footer .footer-links {
    display: flex;
    gap: 4rem;
}

footer .footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-column ul li {
    margin-bottom: 0.5rem;
}

footer .footer-column a {
    color: white;
    text-decoration: none;
}

footer .footer-column a:hover {
    text-decoration: underline;
}

footer .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(160, 174, 192, 0.5); /* gray with opacity */
}

footer .footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer .footer-top {
        flex-direction: column;
    }
}
