
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
        }
        .container {
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: left; /* Align text to the left */
        }
        h2 {
            color: #333;
            margin-bottom: 20px;
        }
        .captcha {
            margin: 20px 0;
            display: flex;
            align-items: center;
        }
        .captcha input {
            width: 60px;
            height: 30px;
            text-align: center;
            font-size: 16px;
            margin-right: 10px; /* Space between input and question */
        }
        .captcha span {
            font-size: 18px;
            font-weight: bold;
        }
        .btn {
            display: block;
            width: 100%;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 18px;
            border-radius: 5px;
            text-align: center;
            margin-top: 20px;
        }
        .btn:hover {
            background-color: #45a049;
        }
        .contact-email {
            margin-top: 20px;
            font-size: 18px;
            color: #333;
            display: none;
        }
