
    /* ==========================================
       MOBILE FRIENDLY FOOTER CSS
       ========================================== */
 .custom-footer {
        background-color: #ffffff;
        padding: 20px 30px;
        border-top: 1px solid #ddd;
        margin-top: 40px;
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-left {
        color: #555;
        font-size: 14px;
        font-weight: 500;
    }

    .footer-left a {
        color: #007bff;
        text-decoration: none;
    }

    .footer-right {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-right a {
        color: #555;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-right a:hover {
        color: #007bff;
    }

    @media (max-width: 768px) {
        .custom-footer { padding: 15px; }
        .footer-container {
            flex-direction: column;
            text-align: center;
            gap: 12px;
        }
        .footer-right {
            justify-content: center;
            gap: 10px 15px;
        }
    }