/* Footer Styles */
.site-footer {
    background-color: #1C2023;
    color: #fff;
    padding: 40px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 20px;
}

.footer-branding {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 15px;
    margin-top: 25px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-nav {
    flex: 1;
    min-width: 160px;
}

.footer-nav-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-nav-list a:hover {
    color: #fff;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    margin-bottom: 12px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    text-align: left;
}

.contact-info a:hover {
    color: #fff;
}

.contact-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer-content {
        gap: 40px;
    }

    .footer-branding,
    .footer-nav,
    .footer-contact {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}