.location-mani-section {
  padding: 90px 45px 100px;
  background: #f7f5e7;
	overflow: hidden;
}

.location-mani-section .location-mani-image {
  width: 100%;
  overflow: hidden;
}

.location-mani-section .location-mani-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-mani-section .location-mani-content {
  padding-left: 40px;
}

.location-mani-section .location-mani-title {
  margin-bottom: 24px;
  line-height: 1.2;
}

.location-mani-section .location-mani-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 0;
}

.distances-section {
  padding: 80px 45px 80px;
  background: #8a8a8a;
  overflow: hidden;
}

.distances-title {
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
}

.distance-item {
  background: rgb(247 245 231 / 12%);
  padding: 15px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.distance-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.distance-item .material-symbols-outlined {
    font-size: 23px;
    color: #fff;
    flex-shrink: 0;
    font-weight: 300;
}

.distance-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.4;
}

.directions-section {
  padding: 90px 45px 100px;
  background: #f7f5e7;
	overflow: hidden;
}

.directions-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.directions-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.directions-content {
  padding: 0 20px;
}

.directions-title {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.3;
}

.directions-intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 25px;
}

.directions-method {
  margin-bottom: 25px;
}

.directions-method:last-child {
  margin-bottom: 0;
}

.method-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  color: var(--title-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.method-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 0;
}

@media (max-width: 991px) {
	
	.location-mani-section {
	  padding: 64px 15px 100px;

	}
  
  .location-mani-section .location-mani-content {
		 padding-left: 0px; 
	}
	
  .distances-section {
    padding: 60px 25px 70px;
  }
  
  .distance-item {
    padding: 12px 18px;
  }
  
  .directions-section {
    padding: 60px 25px 70px;
  }
  
  .directions-map {
    height: 350px;
    margin-bottom: 30px;
  }
  
  .directions-content {
    padding: 0;
  }
  
  .directions-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  
  
  .distances-section {
    padding: 50px 15px 60px;
  }
  
  .distance-item {
    padding: 12px 15px;
  }
  
  .distance-text {
    font-size: 0.9rem;
  }
  
  .directions-section {
    padding: 50px 15px 60px;
  }
  
  .directions-map {
    height: 300px;
  }
  
  .directions-title {
    font-size: 1.5rem;
  }
  
  .directions-intro {
    font-size: 0.95rem;
  }
  
  .method-title {
    font-size: 1rem;
  }
  
  .method-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
    .location-mani-section {
     padding: 48px 15px 70px;
    }
    .location-mani-section .location-mani-title {
    margin-bottom: 15px;
    }
    .directions-section {
     padding: 50px 15px 40px;
    }
}    