.container {
            width: 300px;
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            text-align: center;
            border-radius: 8px;
            padding: 20px;
            background: linear-gradient(135deg, #2980b9, #3498db);
            color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .container:hover {
            transform: translateY(-50%) scale(1.05);
        }

        .closeIcon {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 18px;
            color: #ffffff;
        }

        #protectText {
            font-size: 18px;
            margin-bottom: 20px;
        }

        #getStartedButton {
            display: inline-block;
            padding: 10px 15px;
            background-color: #ffffff;
            color: #3498db;
            font-size: 16px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        #getStartedButton:hover {
            background-color: #e1f0fd;
        }