footer {
    background-color: #1c1b1b;
    color: white;
    display: flex;
    flex-direction: column;

    .footer-content {
        display: flex;
        padding: 20px;
        flex-wrap: wrap;
        gap: 160px;

        .footer-section {
            max-width: 400px;

            h4 {
                font-size: 20px;
                margin-bottom: 15px;
                color: #ffffff;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            p {
                font-size: 16px;
                margin-bottom: 10px;
                line-height: 1.6;
                color: #e0e0e0;
            }

            a {
                color: white;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                    color: #ccc;
                }
            }
        }
    }
    .legal-bar {
        background-color: #111;
        padding: 20px;
        text-align: center;
        border-top: 1px solid #333;

        p {
            font-size: 14px;
            color: #888;
            margin: 5px 0;
            line-height: 1.5;
        }

        a {
            color: #888;
            text-decoration: none;
            &:hover { color: white; }
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }
    }
}