.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
            padding: 40px;
            text-align: center;
        }

        .modal-header h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 12px;
        }

        .modal-header p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .button-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        a {
            display: block;
            padding: 16px 28px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn-private {
            background: #FBBC34;
            color: white;
            border: 2px solid #FBBC34;
        }

        .btn-private:hover {
            background: #e5ab2e;
            border-color: #e5ab2e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251, 188, 52, 0.4);
        }

        .btn-business {
            background: white;
            color: #333;
            border: 2px solid #333;
        }

        .btn-business:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }