.footer__container {
    margin: 20px auto;
    width: 80%;
}
.footer__main {
    margin-top: 100px;
}
.footer__logo a {
    font-size: 28px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}
.footer__nav ul {
    list-style: none;
    gap: 25px;
}

.footer__nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
}


.footer-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #333;
    text-decoration: underline;
}

.footer-copyright {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .footer__nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}