/* Van Page-Specific Styles */
.hero {
  background: rgb(214,122,8)no-repeat center center/cover; /*url('van-hero.jpg')*/
  background: linear-gradient(90deg, rgba(214,122,8,1) 35%, #643ea8 100%);
}

.van-details {
  padding: 50px 30px;
  text-align: center;
  background: white;
}

.van-details p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}

.van-details ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
}

.van-details ul li {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.van-details ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.van-details ul li::before {
  content: "✔"; /* A checkmark icon */
  color: #DE7C12;
  font-size: 24px;
  margin-right: 15px;
}

.van-offer {
  padding: 50px 30px;
  text-align: center;
  background: white;
}

.van-features {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.van-feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.van-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.van-feature-item h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #333;
  position: relative;
   {
     {
      /* padding-left: 40px; */
    }
  }
}

.van-feature-item h3::before {
  content: url("van-icon.png"); /* Placeholder for icons, update with actual graphic paths */
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
}

.van-feature-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.gallery-section__title {
  color: #D67A08;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
  font-size: 30px;
}

/* Media Queries */
@media (max-width: 768px) {
  .van-details h2,
  .services h3 {
    font-size: 28px;
  }

  .van-details p,
  .services ul li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .van-details p,
  .services ul li {
    font-size: 14px;
  }
}
