body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.container {
  max-width: 750px;
  margin: 50px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-top: 10px solid #034694;
}

h1,
#description {
  text-align: center;
  color: #034694;
}

h1 {
  margin-bottom: 10px;
}

#description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #444;
}

label {
  display: block;
  margin: 18px 0 6px;
  font-weight: bold;
  color: #034694;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 8px;
}

button {
  background-color: #034694;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 25px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #002e7a;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #FFD700;
}

.highlight {
  color: #FFD700;
  font-weight: bold;
}

fieldset {
  border: none;
  margin: 20px 0;
  padding: 0;
}
