* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #1d2671, #c33764);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #eee;
}

a.enquiry-link {
  display: inline-block;
  background-color: #fff;
  color: #c33764;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a.enquiry-link:hover {
  background-color: #c33764;
  color: #fff;
  border: 2px solid #fff;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: left;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 15px;
  color: #c33764;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.modal-content button {
  background-color: #c33764;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  font-size: 20px;
  cursor: pointer;
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  p { font-size: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .modal-content { padding: 20px; }
}
