body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-size: 0.9em; /* Adjust this value as needed */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0.5em;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 16px;
}

ul {
    padding-left: 16px;
}

li {
    margin-bottom: 10px;
}

.container {
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    /*max-height: 580px;*/
}

#contact-form, #thanks-form {
    padding: 1em;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.expanding-textarea {
    outline: none;
    overflow-y: hidden;
    resize: none;
    width: 100%;
    min-height: 20px;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 15px;
    display: block;
    /* height: auto;*/
}

    .expanding-textarea:focus {
        border: 2px solid #ced4da;
    }

button {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.1em;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
}

    button:hover {
        background-color: #0056b3;
    }

.chat-container {
    /* max-height: 400px; */
    overflow-y: auto;
    margin-bottom: 15px;
    flex-grow: 1;
    word-wrap: break-word;
    height: 300px;
    max-height: 300px;
}

.question-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer {
    width: 100%;
    padding: 10px 0;
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

/* Responsive styles for mobile and desktop */
/*@media screen and (max-width: 767px) {
    .container {
        margin: 15px auto;
        padding: 15px;
    }
}

@media screen and (min-width: 768px) {
    .container {
        margin: 15px auto;
        padding: 25px;
    }
}
*/