footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 30px;
    border-top: 1px solid #e8e8e8;
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1300px;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}

.footer-brand img {
    width: 90px;
}

.footer-brand p {
    font-size: 14px;
    color: #0000008c;
    line-height: 1.5;
}

.footer-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-nav ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #000000b4;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
    color: #6366F1;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.footer-bottom p {
    font-size: 13px;
    color: #0000008c;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}
