body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: #333;
}

.header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header img {
    max-width: 300px;
    height: auto;
    max-height: 100px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    color: #aaa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.controls {
    display: grid;
    gap: 20px;
    padding: 20px;
    text-align: left;
}

input[type="text"], textarea, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

select {
    background-color: white;
    cursor: pointer;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

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

@media (min-width: 768px) {
    .controls {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .controls {
        grid-template-columns: 1fr;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
}
