body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    font-size: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.header {
    background-color: #f0ebd8;
    padding: 20px;
    font-weight: bold;
}

.section {
    max-width: 80%;
    margin: auto;
    border-radius: 12px;
}

.container {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-start; 
    margin: auto;
}

.container label {
    width: 400px; 
    margin-right: 5px;
}

textarea {
    width: 700px;
    height: 300px;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    border-radius: 6px;
    margin: auto;
}

input[type="file"],
button {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #969076;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="file"]:hover,
button:hover {
    background: linear-gradient(45deg, #c5beac, #bbba9f);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(115, 79, 11, 0.4);
}

input[type=radio] {
    appearance: none; 
    border-radius: 50%; 
    width: 15px; 
    height: 15px; 
    background-color: white; 
    border: 1px solid #969076;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 10px;
}

input[type=radio]:checked {
    background-color: #d6c9a6; 
    border-color: #969076; 
}

input[type=radio]:hover {
    border: 3px solid #969076;
}

.radiolabel {
    margin-right: 1px;
}