body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 300px;
    height: auto;
}

h1 {
    font-size: 24px;
    color: #333;
    font-weight: normal;
    margin-bottom: 30px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.feedback-form textarea,
.feedback-form input {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    resize: vertical;
    min-height: 100px;
}

.feedback-form input {
    min-height: auto;
}

.feedback-form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: auto;
}

.feedback-form button:hover {
    background-color: #0056b3;
}



footer {
    background-color: #007bff;
    color: white;
    padding: 20px;
    margin-top: auto;
}