body {
  margin: 0;
  padding: 0;
}

.locationContainer {
  margin: 0 auto;
  padding: 2rem 6rem;
  font-family: "Noto Serif", serif;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
}

.locationHeader {
  font-weight: 800;
  font-size: 3rem;
  color: #ffffff;
  background-color: #5c469c;
  margin-bottom: 3rem;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-align: center;
  border: 2px solid #000000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.locationPage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.linkWrapper {
  display: contents;
}

.locationCard {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.locationCard:hover {
  transform: translateY(-5px);
}

.locationCover {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.locationImages {
  width: 100%;
  height: 100%;
  display: block;
}

.locationTitle {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  color: #333;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Image Header Styles */
.image-container {
  width: 100%;
  overflow: hidden;
}

.image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1400px) {
  .locationPage {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .locationContainer {
    padding: 1.5rem;
  }
  .locationPage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locationContainer {
    padding: 1rem 2rem;
  }
  .locationHeader {
    font-size: 2rem;
  }
  .locationPage {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .locationContainer {
    padding: 1rem;

  }
  .locationHeader {
    font-size: 1.5rem;
  }
  .locationTitle {
    font-size: 1.2rem;
  }
}

.sticky-links {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #333;
  z-index: 1000;
}

.sticky-link-whatsapp {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: #20b954;
  transition: background-color 0.3s ease;
}

.sticky-link-callUs {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
  transition: background-color 0.3s ease;
}

.sticky-link-whatsapp:hover {
  background-color: #18bd4f;
}
.sticky-link-callUs:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sticky-link-whatsapp {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
  .sticky-link-callUs {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-link-whatsapp {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
  .sticky-link-callUs {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
}