body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfaf6;
  color: #1e2a38;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

h1 {
  color: #002244; /* Deep Navy Blue */
}

.subtitle {
  color: #555;
  font-size: 1rem;
}

.form-section {
  background-color: #fff8e1; /* Amber tint */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: 600;
}

input[type="email"],
input[type="tel"],
select,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.5rem;
}

button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #ffb300; /* Amber */
  color: #002244;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #ffa000;
}

.info h2 {
  color: #002244;
}

.info ul {
  padding-left: 1.2rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}