.faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .question {
            font-weight: bold;
            cursor: pointer;
            color: #333;
            background-color: #f9f9f9;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
            transition: background-color 0.3s ease;
        }

        .answer {
            display: none;
            margin-top: 10px;
            color: #FFF0DB;
        }

        .answer.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
body {
            background-color: black;
            color: white;
            font-size:18px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            line-height: 1.5;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            border: 1px solid #fff;
            padding: 8px;
            color: white;
        }

        th {
            background-color: #f00;
            text-align: left;
        }

        .float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #089a25;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            padding: 0
        }

        .my-float {
            margin-top: 16px
        }

        .float2 {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            left: 40px;
            background-color: #e10600;
            color: #fff;
            border-radius: 50px;
        }