  /* ===== Footer ===== */
    .site-footer {
        background: #000;
        color: #bbb;
        padding: 60px 20px 0;
        font-family: inherit;
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .footer-about h2 {
        color: #fff;
        font-size: 26px;
        margin-bottom: 15px;
    }

    .site-footer h4 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .site-footer p {
        line-height: 1.6;
    }

    .site-footer ul {
        list-style: none;
        padding: 0;
    }

    .site-footer ul li {
        margin-bottom: 10px;
    }

    .site-footer a {
        color: #bbb;
        text-decoration: none;
        transition: 0.2s ease;
    }

    .site-footer a:hover {
        color: white;
    }

    /* CTA */
    .footer-cta {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 24px;
        background: white;
        color: black !important;
        border-radius: 6px;
        font-weight: 500;
    }

    /* Newsletter */
    .footer-form {
        display: flex;
        margin-bottom: 10px;
    }

    .footer-form input {
        flex: 1;
        padding: 10px;
        background: #111;
        border: 1px solid #333;
        color: #fff;
    }

    .footer-form button {
        padding: 0 14px;
        background: white;
        border: none;
        color: black;
        cursor: pointer;
    }

    .footer-small {
        font-size: 13px;
        margin: 8px 0;
    }

    .footer-contact-title {
        margin-top: 20px;
    }

    /* Bottom */
    .footer-bottom {
        margin-top: 50px;
        padding: 20px;
        border-top: 1px solid #222;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-bottom-links a {
        margin-left: 15px;
        font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .footer-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .footer-container {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            text-align: center;
            justify-content: center;
            gap: 10px;
        }
    }