/* Footer Styles */
.site-footer {
    background-color: #111111;
    padding: 3rem 2rem 2rem 2rem;
    /* border-top: 1px solid #222222; */
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Left Section: Logo & Privacy/Terms */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Right Section: Site Navigation & Social Links */
.footer-right {
    display: flex;
    gap: 4rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #222222;
    text-align: center;
}

.copyright {
    color: #666666;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-right {
        gap: 2.5rem;
        width: 80%;
        justify-content: space-between;
    }
}