<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">   &lt;style&gt;
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
        }
        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }
        .faq-container {
            max-width: 800px;
            margin: auto;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
            transition: background-color 0.3s;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .question {
            font-weight: bold;
            cursor: pointer;
            color: #007bff;
            position: relative;
            padding: 10px 0;
        }
        .question::after {
            content: 'âž•';
            position: absolute;
            right: 0;
            transition: transform 0.3s;
        }
        .question.active::after {
            transform: rotate(45deg);
            content: 'âž–';
        }
        .answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 10px;
            color: #555;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }
        .answer.show {
    max-height: none;
    padding: 10px 10px;

        }
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background: #fff;
            border: 2px solid #007bff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            border-radius: 10px;
        }
        .popup h2 {
            margin: 0 0 10px;
        }
        .popup button {
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
    &lt;/style&gt;</pre></body></html>