.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.contact-form {
  max-width: 700px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e40af;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  justify-content: center;
}

.contact-checkbox a {
  text-decoration: underline;
}

.btn-primary {
  margin-top: 1rem;
  background: #0B3C5D;
  color: #fff;
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #1e3a8a;
}

.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}

.hidden {
  display: none;
}

.form-success {
  color: green;
  font-size: 1.2rem;
}

.form-error {
  color: red;
  font-size: 1.2rem;
}

#newsletter-success {
  color: #fff;
  margin-top: 0.5rem;
}

#newsletter-error {
  color: red;
  margin-top: 0.5rem;
}

.contents-newsletter{
  display: contents;
}