        /* Popup Background */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 15px;
        }

        /* Popup Box */
        .popup-box {
            background: #fff;
            padding: 20px;
            width: 90%;
            max-width: 450px;
            height: auto;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 12px;
            text-align: left;
            box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
        }

        h2, h3 {
            text-align: center;
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-family: fantasy;
            color: #194971;
        }

        .fees-table {
            width: 100%;
            margin-top: 10px;
            border-collapse: collapse;
            font-size: 1rem;
        }

        .fees-table th, .fees-table td {
            padding: 10px;
            border-bottom: 1px solid #ddd;
            text-align: left;
            font-family: ui-monospace;
        }

        .section-title {
            margin-top: 15px;
            font-weight: bold;
            font-size: 1.1rem;
        }

        ul {
            padding-left: 20px;
            font-size: 1rem;
        }

        .close-btn {
            background: #f44336;
            border: none;
            padding: 12px;
            color: white;
            cursor: pointer;
            border-radius: 8px;
            margin-top: 15px;
            width: 100%;
            font-size: 1.1rem;
        }
        
        /* CONTACT ICON BUTTONS INSIDE POPUP */
.contact-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.icon-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* CALL BUTTON STYLE */
.call-btn {
    background: #007bff;
}

/* WHATSAPP BUTTON STYLE */
.whatsapp-btn {
    background: #25D366;
}

/* HOVER EFFECT */
.icon-btn:hover {
    transform: scale(1.1);
}


        /* Mobile Optimizations */
        @media (max-width: 480px) {
            .popup-box {
                padding: 15px;
                border-radius: 10px;
            }

            h2, h3 {
                font-size: 1.1rem;
            }

            .fees-table th, .fees-table td {
                font-size: 0.95rem;
                padding: 8px;
            }

            ul {
                font-size: 0.95rem;
            }

            .close-btn {
                font-size: 1rem;
                padding: 10px;
            }
        }