.container {
  max-width: 136rem;
  margin: 0 auto;
  padding: 2rem 3rem;
  /* font-family: "Brygada 1918", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal; */
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: "Noto Serif", serif;
}

.title {
  font-size: 30px; /* Decreased size */
  margin-bottom: 20px;
  text-align: left;
  color: #ff4c4c;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 0;
  margin-bottom: 30px;
  position: relative;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title::before {
  content: "";
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, transparent);
}

.title::after {
  content: "✦";
  position: absolute;
  bottom: -15px;
  left: 0;
  font-size: 2rem;
  color: #ff6b6b;
  background-color: white;
  padding: 0 10px 0 0;
}

.description {
  font-size: 1.7rem;
  line-height: 1.4; /* Decreased line height */
  font-weight: 400;
  margin-bottom: 20px;
  color: rgb(58, 57, 57);
}

.mainImageContainer {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

.mainImage {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.content {
  display: flex;
  flex-direction: column;
}

.section {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.sectionImage {
  flex: 1;
  border-radius: 10px;
  margin: 20px;
  height: auto;
  max-height: 35rem;
  margin-bottom: 36px;
}

.sectionContent {
  flex: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(58, 57, 57);
}

.sectionTitle {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.sectionDescription {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 45rem;
}

.imageGroup {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.imageGroup img {
  border-radius: 10px;
}

.buttonGroup {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.button {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  padding: 15px; /* Decreased padding */
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 24px; /* Decreased size */
  font-weight: 800;
  transition-duration: 0.4s;
  background-color: #5c469c;
  display: block;
  width: 100%;
}

.button:hover {
  opacity: 0.8;
}

.linkWrapper {
  display: contents;
}

.buttonLocationsDiv .buttonLocations {
  font-size: 34px;
  color: rgb(2, 2, 2);
  margin-bottom: 20px;
  font-weight: 700;
}

.buttonContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  padding: 10px;
}

.buttonLocations {
  margin-left: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 28px;
}

.imageWrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.imageItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newImageItem {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5; /* Ensures same size images */
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

.newButtons {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  padding: 15px;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  transition-duration: 0.4s;
  background-color: #5c469c;
  width: 100%;
}

.newButtons:hover {
  opacity: 0.8;
}

@media (max-width: 1400px) {
  .imageWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .newImageItem {
    max-width: 90%; /* Ensures images don't take the entire width */
    margin-top: 1rem;
  }

  .newButtons {
    width: 90%;
  }
  .description {
    font-size: 1.2rem;
  }
}

@media (max-width: 990px) {
  .buttonGroup {
    gap: 2rem;
  }
  .container {
    padding: 2rem 4rem;
  }
  .section {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .sectionImage {
    margin: 0 0 20px 0;
    max-height: 35rem; /* Adjust height for medium screens */
  }

  .sectionTitle {
    margin-bottom: 10px;
    text-align: center;
  }

  .sectionContent {
    padding: 0;
    align-items: center;
  }

  .sectionDescription {
    max-width: 90%;
  }

  .mainImage {
    max-width: 90%;
    height: auto;
  }

  .newContainer {
    padding: 2rem 4rem;
  }

  .imageWrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0rem;
  }

  .newImageItem {
    height: auto;
    max-width: 100%; /* Ensures images don't take the entire width */
  }

  .newButtons {
    width: 100%;
  }

  .button {
    padding: 12px;
    font-size: 1.5em;
    text-align: center;
    width: 21rem;
  }

  .title {
    font-size: 40px; /* Decreased size */
    margin-bottom: 20px;
    text-align: left;
    color: #ff4c4c;
  }
  .description {
    font-size: 1.2rem;
    line-height: 1.4; /* Decreased line height */
    font-weight: 400;
    margin-bottom: 20px;
    color: rgb(58, 57, 57);
  }
}

@media (max-width: 768px) {
  .buttonGroup {
    gap: 1rem;
  }
  .button {
    width: 20rem;
  }
  .container {
    padding: 2rem 2rem;
  }
  .section {
    flex-direction: column;
    align-items: center;
  }

  .sectionImage {
    margin: 0 0 20px 0;
    max-height: 35rem; /* Adjust height for smaller screens */
  }

  .sectionTitle {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .sectionContent {
    padding: 0;
    align-items: center;
  }

  .sectionDescription {
    font-size: 1rem;
  }

  .mainImage {
    max-width: 95%;
    height: auto;
  }
  .newContainer {
    padding: 2rem 2rem;
  }

  .imageWrapper {
    grid-template-columns: 1fr;
    margin-top: 0rem;
  }

  .newImageItem {
    height: auto;
    max-width: 80%; /* Ensures images don't take the entire width */
  }

  .newButtons {
    width: 80%;
  }
  .newButtonContainer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .title {
    font-size: 40px; /* Decreased size */
    margin-bottom: 20px;
    text-align: left;
    color: #ff4c4c;
    text-align: center;
  }
  .description {
    font-size: 1.3rem;
    line-height: 1.3; /* Decreased line height */
    font-weight: 400;
    margin-bottom: 20px;
    color: rgb(58, 57, 57);
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0rem 1rem;
    max-width: 100%;
  }

  .title {
    font-size: 30px;
    margin-top: 1rem;
  }

  .description {
    font-size: 1.1rem;
    line-height: 1.3; /* Decreased line height */
    font-weight: 400;
    margin-bottom: 10px;
    color: rgb(58, 57, 57);
    text-align: left;
  }

  .sectionTitle {
    max-width: 26rem;
    font-size: 1.4rem;
  }

  .sectionDescription {
    font-size: 1.1rem;
    padding: 0;
  }

  .sectionImage {
    width: 86%;
    height: auto;
    max-height: 33rem; /* Adjust height for very small screens */
    margin-bottom: 0;
  }

  .mainImage {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .button {
    padding: 12px;
    font-size: 1.2em;
    text-align: center;
    width: 15rem;
  }

  .buttonLocationsDiv .buttonLocations {
    margin-left: 0;
  }

  .newContainer {
    padding: 1rem 1rem;
  }

  .imageWrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .newImageItem {
    height: auto;
    max-width: 100%; /* Ensures images don't take the entire width */
  }

  .newButtons {
    width: 100%;
  }
}

.image-container {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  overflow: hidden;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive design */
@media (max-width: 768px) {
  .image-container {
    height: auto;
  }

  .image {
    height: auto;
    width: 100%;
    object-fit: contain; /* Ensures the whole image is visible */
  }
}

@media (max-width: 480px) {
  .image-container {
    height: auto;
  }

  .image {
    height: auto;
    width: 100%;
    object-fit: contain; /* Ensures the whole image is visible */
  }
}


.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;
  }
}