

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b0c10;
  color: #c5c6c7;
  padding: 2rem;
  margin: 0;
}

button {
  background-color: #1f2833;
  color: #66fcf1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a29e;
  color: #0b0c10;
}

h2 {
  color: #66fcf1;
  margin-top: 2rem;
  font-size: 1.5rem;
}

#facilities {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#facilities div {
  background-color: #1f2833;
  border-left: 4px solid #66fcf1;
  padding: 1rem;
  border-radius: 4px;
  line-height: 1.4;
  box-shadow: 0 0 5px rgba(102, 252, 241, 0.2);
}