.site-footer {
    background-color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand-section {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.brand-description {
    line-height: 1.6;
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}


.footer-links-grid {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-column {
    min-width: 160px;
    max-width: 180px;
}

.footer-column a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ff6041;
}


.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 12px;
    color: #aaa;
}

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

.legal-links a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;

        gap: 30px;
    }

    .footer-brand-section {
        min-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .bottom-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .social-icons {
        display: flex;
        gap: 6px;
    }
}