/* ========== FOOTER STYLES ========== */

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 40px;
    font-family: 'ABC Normal', 'IBM Plex Sans';
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 55px;
    width: auto;
}

.footer-description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 2rem;
}

.footer-copyright {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links-column {
    padding-left: 2rem;
    line-height: 2;
    padding-top: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-divider {
    border-top: 1px solid #333333;
    margin: 40px 0 30px;
}

.footer-bottom-text {
    color: #888888;
    font-size: 0.9rem;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-links-column {
        padding-left: 0;
        text-align: center;
        margin-top: 1rem;
    }

    .footer-logo,
    .footer-description,
    .footer-copyright {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 30px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .footer-heading {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .footer-bottom-text {
        text-align: center;
    }

    .footer-divider {
        margin: 30px 0 20px;
    }
}