body {
  margin: 0;
  background: linear-gradient(135deg, rgba(0, 159, 189, 0.7), rgba(61, 220, 145, 0.7)), #000;
  color: #fff;
}
* {
  font-family: "Century Gothic", sans-serif;
  box-sizing: border-box;
}
#header-placeholder {
  position: relative;
  z-index: 1000;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
textarea {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.name-fields input {
  flex: 1;
}

.checkbox {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

button {
  background-color: #000000;
  color: #fff;
  padding: 14px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
}

.terms {
  font-size: 0.75rem;
  margin-top: 10px;
  opacity: 0.8;
}

.contact-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 250px;
}

.contact-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
