body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0f0f0f, #1a1a1a, #2a2a2a);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: white;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 480px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

input, textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

button {
  background-color: #4444ff;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #5b5bff;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 1.5rem;
}
