 .modal-content {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(3, 61, 133, 0.2);
            background: linear-gradient(135deg, #007B9A 0%, #033D85 100%);
        }

        .modal-header {
            background: transparent;
            border: none;
            padding: 2rem 2rem 1rem;
            position: relative;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .success-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .btn-close {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .btn-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .modal-body {
            background: white;
            padding: 2rem;
            margin: 0 1.5rem;
            border-radius: 12px;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
            color: #033D85;
            font-size: 1.1rem;
            line-height: 1.6;
            text-align: center;
        }

        .modal-footer {
            background: transparent;
            border: none;
            padding: 1.5rem 2rem 2rem;
            justify-content: center;
        }

        .btn-modern {
            background: white;
            color: #007B9A;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .btn-modern:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

        .modal-dialog {
            max-width: 500px;
        }

        /* Backdrop enhancement */
        .modal-backdrop {
            background-color: rgba(3, 61, 133, 0.8);
        }

        /* Animation for modal appearance */
        .modal.fade .modal-dialog {
            transform: translateY(-50px) scale(0.9);
        }

        .modal.show .modal-dialog {
            transform: translateY(0) scale(1);
        }

        /* Decorative elements */
        .modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00ff88, #00d4ff);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }