body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  /*background: url('../img/Trona_contact_background_img.webp') no-repeat center center fixed;*/
  background-color: #594c39;
  /*background-size: cover;*/
  min-height: 100vh;
  font-family: 'PT Serif', serif;
}
.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 50px auto 0 auto;
color: black;
  border-radius: 18px;
  padding: 48px 32px;
}
.contact-hinweistext{
    font-size: small;
}
.contact-info {
  flex: 1 1 350px;
  display: block;
  color: black;

}
.contact-info h1 {
  color: black;
  font-size: 2rem;
  margin-bottom: 18px;
}
.contact-info h2 {
  font-size: 1.2rem;
  color: black;
}
.contact-info p {
  font-size: 1.1rem;
  color: black;
  Font-family: 'PT Serif', serif;
}
.contact-info .contact-label {
  font-weight: bold;
  color: white;
  font-family: 'PT Serif', serif;
}
.contact-form-section {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  background: white;
  color: black;
  border: white 2px solid;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #c2001a;
}
.contact-form label {
  color: black;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-form button {
  background: white;
  color: black;
  border: none;
  border-radius: 18px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #594c39;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 24px;
    padding: 24px 8px;
  }
  .contact-form {
    max-width: 98vw;
  }
}

.headerItem nav ul li a{
  color: black!important;
}
