#fw-section-custom-html-a51e4792-9c1a-41d3-8aa0-f7b49785e602 {

 .question-button {
border-radius: 122px; 
   display: block;
            width: 100%;
            background-color: #ADD8E6; /* Light blue color */
            color: #000; /* Dark text for contrast */
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .question-button:hover {
            background-color: #87CEFA; /* Slightly darker blue on hover */
            transform: scale(1.02);
        }

        .question-button:active {
            transform: scale(0.98);
        }
}