.wayfinding-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  will-change: filter; /* Improve performance on hover */
}

.image-container img:hover {
  filter: grayscale(0%);
}

.content-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  gap: 40px; /* Professional gap between heading and paragraph */
  margin-top: 32PX;
}
.content-container h2 {
  flex: 1;
  font-size: 2rem;
  color: #222;
  margin: 0;
  text-align: left;
}
.content-container p {
  flex: 2;
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  text-align: justify;
  margin-top: 32px;
}
.content-container-about {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  gap: 40px; /* Professional gap between heading and paragraph */
  margin-top: 32PX;
}

.content-container-about h2 {
  flex: 1;
  font-size: 2rem;
  color: #222;
  margin: 0;
  text-align: left;
}

.content-container-about p {
  flex: 2;
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  text-align: justify;
  margin-top: 32px;
  margin-bottom: 32px;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .content-container-about {
    flex-direction: column; /* Stack content vertically on smaller screens */
    align-items: center;
    gap: 20px; /* Reduce the gap for smaller screens */
  }

  .content-container-about h2 {
    font-size: 1.8rem; /* Slightly smaller font size on smaller screens */
    text-align: center; /* Center-align heading */
  }

  .content-container-about p {
    font-size: 1rem; /* Adjust paragraph font size */
    margin-top: 16px; /* Adjust margins for better spacing */
    margin-bottom: 16px;
    text-align: center; /* Center-align paragraph text */
  }
}

@media screen and (max-width: 480px) {
  .content-container-about {
    padding: 15px; /* Adjust padding for very small screens */
  }

  .content-container-about h2 {
    font-size: 1.5rem; /* Smaller font size on very small screens */
  }

  .content-container-about p {
    font-size: 0.95rem; /* Further reduce font size */
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .content-container h2,
  .content-container p {
    text-align: center;
  }

  /* Optional: Adjust the paragraph text for better readability */
  .content-container p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .content-container h2 {
    font-size: 1.5rem;
  }

  .content-container p {
    font-size: 1rem;
  }
}
