.about-camping {
    padding: 50px 15px;
    background: #fff;
    color: #333;
    text-align: center;
  }
  
  .about-title {
    font-size: 2rem;
    color: #ff7a00;
    margin-bottom: 20px;
  }
  
  .about-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 90%;
    margin: 0 auto 25px;
  }
  
  .about-highlights {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 400px;
    text-align: left;
  }
  
  .about-highlights li {
    font-size: 1rem;
    margin: 10px 0;
    background: #fff7ec;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  @media (min-width: 768px) {
    .about-title {
      font-size: 2.5rem;
    }
  
    .about-desc {
      font-size: 1.1rem;
      max-width: 800px;
    }
  
    .about-highlights {
      max-width: 600px;
      font-size: 1.1rem;
    }
  }















  .pricing-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .pricing-title {
    font-size: 2.5rem;
    color: #ff7a00;
    margin-bottom: 40px;
  }
  
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .price-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 300px;
    transition: transform 0.3s;
  }
  
  .price-card:hover {
    transform: translateY(-10px);
  }
  
  .price-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .price-details {
    padding: 20px;
  }
  
  .price-details h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 1.2rem;
    color: #ff7a00;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .price-details ul {
    list-style: none;
    padding: 0;
    color: #555;
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .price-card {
      max-width: 100%;
    }
  }