* {
  padding: 0;
  margin: 0;
}
body {
  padding: 0;
  margin: 0;
}
.book-now {
  background-color: #053549;
}

.hero-gradient {
  background: linear-gradient(to bottom, #011e27, #011e27, #03b5ec);
  /* background: black: */
}
.body-gradient {
  background: linear-gradient(to bottom, #011e27, #011e27, #03b5ec);
}
.hero-gradient-2 {
  background: linear-gradient(to bottom, #0283ab, #026380, #03b5ec);
  /* background: black: */
}
.privacy {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly; /* distributes evenly */
  gap: 26rem; /* or remove entirely */
  margin-bottom: 1.5rem;
  flex-wrap: wrap; /* optional: avoids overlap on small screens */
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}
