
body {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.radio-section {
    margin-bottom: 40px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
}

.radio-option label {
    font-size: 16px;
    cursor: pointer;
}

.text-section {
    margin-top: 40px;
}

.text-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.text-section textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    height: 120px;
    resize: vertical;
    font-family: Arial, sans-serif;
}

.text-section textarea:focus {
    outline: none;
    border-color: #007bff;
}

.button-section {
    margin-top: 20px;
    text-align: right;
}

.send-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.send-button:hover {
    background-color: #0056b3;
}

.send-button:active {
    background-color: #004494;
}

h2 {
    margin-top: 0;
    color: #333;
}
