 .question-set {
            background-color: #ffffff;
            border: 1px solid #ddd;
            padding: 20px;
            margin-bottom: 10px;
        }
        .question {
            margin-bottom: 5px;
            font-size: 16px;
            color: #333;
            font-weight: bolder;
        }
        .answer {
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto; /* 15% from the top and centered */
            padding: 20px;
            border: 1px solid #888;
            width: 80%; /* Could be more or less, depending on screen size */
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .stylish-para {
            background-color: #ffffff; /* Background color */
            border: 2px solid #007BFF; /* Blue border */
            color: #333; /* Text color */
            font-size: 18px; /* Text size */
            padding: 20px; /* Padding around text */
            border-radius: 8px; /* Rounded corners */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
            text-align: center; /* Center text */
            max-width: 600px; /* Maximum width */
        }
        .stylish-para:hover {
            border-color: #0056b3; /* Darker blue border on hover */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Larger shadow for a lifting effect */
        }