﻿.site-footer {
    background-color: #1a1a2e;
    color: #ccc;
    padding: 40px 20px 20px;
    font-size: 0.95rem;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

    .footer-left h4 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
}

    .footer-links a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-social {
    min-width: 200px;
}

    .footer-social a {
        display: block;
        color: #bbb;
        text-decoration: none;
        margin-bottom: 6px;
    }

        .footer-social a:hover {
            color: #fff;
            text-decoration: underline;
        }

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #999;
    margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        display: inline-block;
        margin: 0 8px;
    }
}
