.header-section {
    background: url('../images/offers_header.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
  }

  .header-section h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .header-section h3 {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .header-section p {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .offer-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
  }
  .old-price {
    text-decoration: line-through;
    color: #888;
  }

  .offer-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .offer-details {
    padding: 15px;
  }

  .offer-details h5 {
    font-weight: bold;
  }

  .offer-details p {
    margin: 5px 0;
  }

  .book-btn {
    margin-top: 10px;
  }

  @media (max-width: 767px) {
    .header-section h1 {
      font-size: 2rem;
    }

    .header-section h3 {
      font-size: 1.2rem;
    }

    .header-section p {
      font-size: 1rem;
    }
  }

  .offer-clickable {
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .offer-clickable:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  