body {
  background: radial-gradient(circle, #f4e1d2, #e8b89e, #d0896b, #a0522d);
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  color: #5a3d1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}


.indexp {
  font-size: 3vw;
  text-align: center;
  margin: 2vw;
}

.contact-form {
  background-color: #fff;
  padding: 2vw;
  margin: 3vw auto;
  border-radius: 0.8vw;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  font-size: 1.2vw;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 1vw;
  font-size: 1.1vw;
  border: 1px solid #ccc;
  border-radius: 0.4vw;
  font-family: inherit;
}

.btn {
  padding: 1vw;
  background: linear-gradient(to right, #5a3d1c, #a0522d);
  color: white;
  border: none;
  border-radius: 0.4vw;
  cursor: pointer;
  font-size: 1.2vw;
  transition: background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(to right, #7a5230, #c0703d);
}

#confirmation {
  margin-top: 2vw;
  font-size: 1.5vw;
  color: green;
}

.hidden {
  display: none;
}
.logo {
  height: 25vw;
  width: auto;
  max-height: 200px;
  max-width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-left: 0;
}
/* Position logo far left, not centered */
.logo-link {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 1000;
}

.tippy-logo {
  width: 10vw;
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.tippy-logo:hover {
  transform: scale(1.1);
}

/* New center block */
.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.tpm-banner {
  width: 35vw;
  max-width: 400px;
  height: auto;
  margin-bottom: 1vw;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #5a3d1c;
  text-align: center;
  text-shadow: 1px 1px 3px #fff;
}

