body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.champions-gate-desc {
  font-size: larger;
}

.Oasis-club-Amenities {
  font-size: larger;
}

img {
  display: flex;
  justify-content: center;
  align-content: center;
}

.main-content {
  display: flex;
  flex-grow: 1;
}

.oclub-amen {
  font-size: larger;
}

.Champions-gate-amenities {
  font-size: larger;
}

.cgate-list {
  font-size: larger;
}

.left-section,
.right-section {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.left-section {
  background-color: #f2f2f2;
}

.right-section {
  background-color: #e2e2e2;
}

@media (max-width: 600px) {
  .main-content {
    flex-direction: column;
  }
}
footer {
  background-color: #03919b; /* Dark background for the footer */
  color: white;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer-link {
  color: white;
  text-decoration: underline;
  font-style: bold;
  padding: 10px;
  margin-top: 50px;
}

.footer-link:first-child {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.footer-link:nth-child(2) {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 50px;
}
