body {
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 40px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 10px;
}

.acquired-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

.contact-section h2 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  background-color: #111;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  background-color: #333;
}
