.heritage-intro {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.heritage-intro::first-letter {
    font-size: 1.5em;
    font-weight: bold;
    color: #007bff;
}

.heritage-intro strong {
    color: #0056b3;
}

.heritage-intro em {
    font-style: italic;
    color: #6c757d;
}

.heritage-intro a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.heritage-intro a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.heritage-container {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #ECEFF1, #FFFFFF);
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.heritage-container .heritage-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.heritage-container .left-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}

.heritage-container .right-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.heritage-section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.heritage-section::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #3498db, #2980b9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.heritage-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.heritage-section:hover::before {
  opacity: 1;
}
.section-title {
  background: linear-gradient(to right, #3498db, #2980b9);
  color: #ffffff;
  padding: 0.6rem 1rem;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative; /* Needed for absolute positioning of arrow */
}

.section-number {
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  margin-right: 0.5rem;
  font-size: 0.9em;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  width: 1.5em; 
  height: 1.5em;
  text-align: center;
  border-radius: 50%;
}


.arrow-indicator {
  font-size: 1em;
  opacity: 0.8;
  position: absolute;
  right: 1rem;
  top: 50%; /* Center the arrow vertically */
  transform: translateY(-50%);
  animation: blink-arrow 1s infinite alternate;
}

/* Animation for the arrow */
@keyframes blink-arrow {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.section-grid {
  display: flex;
  flex-direction: row;
}

.section-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.responsive-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.responsive-image:hover {
  transform: scale(1.05);
  filter: brightness(110%);
}

.section-text {
  flex: 1;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.section-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
}

.suggestion-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem;
  gap: 1.5rem;
  position: relative;
}

.suggestion-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00703C, #39B54A);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.suggestion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.suggestion-item:hover::after {
  opacity: 1;
}

.suggestion-header {
  background: linear-gradient(to right, #00703C, #39B54A);
  color: white;
  padding: 0.6rem 1rem;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
}

.suggestion-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.suggestion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.suggestion-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

@media (max-width: 1024px) {
  .heritage-container .heritage-wrapper {
    flex-direction: column;
  }
  .heritage-container .left-container,
  .heritage-container .right-container {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-grid {
    flex-direction: column;
  }
  .section-image {
    max-width: 100%;
  }
  .responsive-image {
    height: 200px;
  }
  .section-text {
    padding: 1rem;
  }
  .suggestion-image {
    width: 70px;
    height: 70px;
  }
  
  /* Make .left-container horizontally scrollable */
  .heritage-container .left-container {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  }
  
  .heritage-section {
    width: 100%; /* Ensure each section takes full width of the container */
    min-width: 250px; /* Minimum width for each heritage section */
    flex: 0 0 auto; /* Prevent shrinking */
    margin-right: 1rem; /* Add some space between sections for better touch interaction */
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.2rem;
    padding: 0.75rem 0.8rem;
  }
  .responsive-image {
    height: 150px;
  }
  .section-text p {
    font-size: 0.9rem;
  }
  .suggestion-title {
    font-size: 1rem;
  }
  .suggestion-header {
    font-size: 1.2rem;
  }
}