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

header {
  background-color: #ffcc00;
  padding: 1.5em 1em;
  text-align: center;
  color: #fff8e1;
}

header h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: black;
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: #d00000;
  text-decoration: none;
  margin: 0 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: text-decoration 0.3s ease;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

main {
  max-width: 600px;
  margin: 3em auto;
  padding: 0 1em;
}

.contact-section h2 {
  font-size: 42px;
  color: #d00000;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1em;
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 1em;
}

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

label {
  font-weight: 600;
  margin-top: 1em;
  font-family: 'Poppins', sans-serif;
}

input,
textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  padding: 0.75em;
  margin-top: 0.5em;
  border: 2px solid #d00000;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
}

button {
  margin-top: 2em;
  padding: 0.75em;
  background-color: #d00000;
  color: #fff8e1;
  border: none;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.alt-contact {
  margin-top: 2em;
  font-size: 16px;
}

.alt-contact a {
  color: #d00000;
  text-decoration: none;
}

.alt-contact a:hover {
  text-decoration: underline;
}

footer {
  background-color: #d00000;
  color: #fff8e1;
  text-align: center;
  padding: 1em;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  margin-top: 4em;
}
