.iq-test-section {
            font-family: Arial, sans-serif;
            background: #e3f2fd;/*background: linear-gradient(135deg, #6a11cb, #2575fc);*/
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: white;
            overflow: auto;
        }
        .iq-test-container {
            background: white;
            color: black;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            width: 100%;
            overflow-y: auto;
            max-height: 90vh;
        }
        .iq-test-title {
            text-align: center;
            color: #6a11cb;
        }
        .iq-test-question {
            margin-bottom: 20px;
        }
        .iq-test-answers label {
            display: block;
            margin-bottom: 8px;
        }
        .iq-test-button-container {
            text-align: center;
            margin-top: 20px;
        }
        .iq-test-button {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }
        .iq-test-button:hover {
            opacity: 0.8;
        }
        .iq-test-submit {
            background: #6a11cb;
            color: white;
        }
        .iq-test-reset {
            background: #e74c3c;
            color: white;
            margin-left: 10px;
        }
        .iq-test-result {
            display: none;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            padding: 20px;
            border-radius: 8px;
            background: linear-gradient(135deg, #ff9a9e, #fad0c4);
            color: black;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            margin-top: 20px;
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }