body {
  margin: 0;
  background-color: #fdfcf9;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}
h2{
  font-family: serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}
 h3 {
  font-family: serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}
form {
  font-size: 12px;
  text-align: left;
  max-width: 48rem;
  margin: 0 auto;
}
label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 12px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 1px solid #4b5563;
  border-radius: 12px;
  padding: 0.25rem 0.75rem;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  color: black;
  width: 100%;
  box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  font-size: 10px;
  color: #6b7280;
}
textarea {
  resize: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 70px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  margin-bottom: 0.5rem;
}
input[type="checkbox"] {
  width: 12px;
  height: 12px;
}
button[type="submit"] {
  background-color: #b94a0a;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  width: max-content;
}
iframe {
  border: 0;
  width: 600px;
  height: 350px;
  max-width: 100%;
  display: block;
  margin: 0 auto 4rem auto;
}
footer {
  max-width: 1120px;
  margin: 80px auto 40px;
  padding: 0 24px;
  color: #4a4a4a;
  font-size: 12px;
}
footer hr {
  border: none;
  border-top: 1px solid #999999;
  margin-bottom: 16px;
}
/* Header styles */
header {
  width: 100%;
  padding: 24px 0;
}
nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
ul.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  gap: 1.5rem;
}
ul.nav-links li a {
  text-decoration: none;
  color: #1a1a1a;
  cursor: pointer;
}
ul.nav-links li a:hover {
  text-decoration: underline;
}
.login-btn {
  background-color: #b94a0a;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-btn:hover {
  background-color: #a14308;
}