/* Footer */
:root {
    --primary-orange: #FF6B00;
    --background-color: #FFF5EB;
}

footer {
    background-color: var(--background-color);
    padding: 20px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.footer-nav a.active {
    color: var(--primary-orange);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.logo {
    max-height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .logo-container {
        text-align: center;
        margin-bottom: 1rem;
    }
}