 footer {
        background: #111;
        color: #ccc;
        padding: 60px 0 0;
        position: relative;
        font-family: Arial, sans-serif;
    }

    /* Background map (optional) */
    footer::before {
        content: "";
        background: url('map-bg.png') center/cover no-repeat;
        opacity: 0.12;
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1300px;
        margin: auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .footer-column {
        flex: 1;
        min-width: 260px;
    }

    .footer-title {
        color: #fff;
        font-size: 20px;
        margin-bottom: 18px;
        position: relative;
    }

    .footer-title::after {
        content: "";
        position: absolute;
        width: 35px;
        height: 3px;
        background: #ff6a00;
        bottom: -6px;
        left: 0;
        border-radius: 3px;
    }

    /* Privacy text */
    .footer-text {
        font-size: 14px;
        line-height: 1.6;
        color: #bbb;
    }

    /* Menu links */
    .footer-links a {
        display: block;
        color: #bbb;
        text-decoration: none;
        margin: 6px 0;
        font-size: 15px;
        transition: 0.3s;
    }
    .footer-links a:hover {
        color: #ff6a00;
    }

    /* Social icons */
    .social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        margin-right: 10px;
        border-radius: 50%;
        background: #222;
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: 0.3s;
    }
    .social-icons a:hover {
        background: #ff6a00;
    }

    /* Copyright bar */
    .footer-bottom {
        background: #000;
        padding: 18px 20px;
        margin-top: 40px;
        text-align: center;
        font-size: 14px;
        position: relative;
        z-index: 1;
        color: #aaa;
    }

    .footer-bottom .designer {
        float: right;
        color: #ff6a00;
    }

    @media (max-width: 700px) {
        .footer-bottom .designer {
            float: none;
            display: block;
            margin-top: 8px;
        }
    }