.offers-heading {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #222;
      text-align: center;
    }

    .offers-section {
      position: relative;
      width: 90%;
      max-width: 900px;
      height: 250px;
      background: url(../img/offer.png);/* transparent PNG background */
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .offers-slider {
      display: flex;
      transition: transform 0.6s ease-in-out;
      height: 100%;
      width: 100%;
    }

    .offer {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      font-weight: bold;
      color: #222;
      padding: 0 30px;
      text-align: center;
      box-sizing: border-box;
    }

    /* Arrows */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: #fff;
      padding: 8px 14px;
      cursor: pointer;
      border-radius: 50%;
      user-select: none;
    }
    .prev { left: 15px; }
    .next { right: 15px; }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 15px;
      text-align: center;
      width: 100%;
    }
    .dot {
      cursor: pointer;
      height: 12px;
      width: 12px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background 0.3s;
    }
    .dot.active {
      background-color: #333;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .offers-heading { font-size: 1.6rem; }
      .offer { font-size: 1.3rem; padding: 0 20px; }
    }
    @media (max-width: 480px) {
      .offers-heading { font-size: 1.4rem; }
      .offer { font-size: 1.1rem; padding: 0 15px; }
    }