/* Why to Book Section */
.why-book-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
  }
  
  .why-book-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  .why-book-item {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .why-book-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .icon-container {
    background-color: #ff7a00;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff7a00;
    margin-bottom: 15px;
  }
  
  .item-desc {
    font-size: 1.1rem;
    color: #555;
  }
  
  /* Hover effects on individual items */
  .why-book-item:hover .icon-container {
    background-color: #e65c00;
  }
  

  @media (max-width: 768px){

    .why-book-section h2{
      font-size: 20px;
    }

  }