body {
  font-family: Arial, sans-serif;
  background: #f0f2f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  margin-bottom: 10px;
}

.domain-name {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2em;
  margin-bottom: 20px;
}

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

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

.contact-form button {
  padding: 12px;
  background: #007BFF;
  border: none;
  color: white;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0056b3;
}

footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #777;
}
