body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f3f3;
  color: #111;
  font-size: 18px;
}

.container {
  max-width: 980px;
  margin: 32px auto;
  padding: 0 24px 40px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

h1 {
  font-size: 54px;
  margin: 8px 0 16px;
}

p {
  font-size: 20px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 640px) {
  .row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}

label {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.25;
  min-height: 1.25em;
  display: block;
}

input,
textarea,
select,
button {
  font-size: 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 14px 16px;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

button {
  margin-top: 20px;
  width: 100%;
  background: #111;
  color: white;
  border: none;
  cursor: pointer;
}

.flow {
  margin-top: 20px;
  color: #555;
}