body {
  margin: 0;
  padding: 0;
  background-color: #fdfaf5;
  font-family: Arial, sans-serif;
  color: #2c5a6b;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 600px;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.appointment-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #f4a259;
  /* Orange from logo */
  color: #ffffff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.appointment-button:hover {
  background-color: #e19248;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 15px 10px;
  color: #2c5a6b;
}