body {
    font-family: 'Poppins', sans-serif;
    color: #0c0c0c;
    margin: 0;
    padding: 0;
    background: #ffffff;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  h5, h6 {
    margin: 0;
  }

  /* Header */
  .header_section {
    overflow-x: hidden;
    background: #3554d1;
    padding: 0px 0;
    text-align: center;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .header_section img {
    height: 60px;
  }

  /* Slider Section */
  .slider_section  {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   flex-direction: column;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    background-color: #f8f8f8;
  }

  .slider_section h4{
    font-size: 22px;
    font-weight: bold;
   text-align: center;
   color: #FEBE10;
   -webkit-text-stroke: 0.5px #F40009;
   margin-top: 30px;
   margin-bottom: 10px;
  }
  .slider_section h5{
    font-size: 14px;
    font-weight: normal;
   text-align: center;
   color: #ffffff;
   background-color: #F40009;
   width: 80%;
   border-radius: 10px;
   border: 0.5px solid #0A0A0A;
   padding-top: 20px;
   padding-bottom: 20px;
  }
  /* Sale Section */
  .sale_section {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   flex-direction: column;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   text-align: center;
   padding: 30px 10px;
   background-color: #f8f8f8;
  }


  .sale_section h4 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #FEBE10;
    -webkit-text-stroke: 0.5px #0A0A0A;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .sale_container {
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
  }

  .sale_container .box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .sale_container .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }

  .sale_section .sale_container .box .img-box img {
   width: 100%;
   border-radius: 10px;
   display: flex;
  }

  .sale_container .detail-box h6 {
    font-size: 18px;
    font-weight: bold;
    color: #0A0A0A;
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .btn-box a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background: #3554d1;
    color: #ffffff;
    border: 2px solid  #F40009;
    text-decoration: none;
    border-radius: 50px;
    margin-bottom: 20px;
  }

  .btn-box a:hover {
    background: #FEBE10;
    border: 3px solid  #F40009;
    color: #ffffff;
  }

  /* Footer Section */
  .footer_section {
    background: #3554d1;
    color: #ffffff;
    padding: 5px;
    text-align: center;
    font-size: 14px;
  }

  /* Media Queries for Additional Responsiveness */
  @media (max-width: 1200px) {
    .sale_section h5 {
      font-size: 24px;
    }

    .btn-box a {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .sale_section {
      padding: 20px 5px;
    }

    .sale_container .box {
      padding: 10px;
    }

    .sale_container .detail-box h6 {
      font-size: 16px;
    }
  }

  @media (max-width: 576px) {
    .header_section img {
      height: 50px;
    }

    .sale_container {
      gap: 15px;
    }

    .sale_section h5 {
      font-size: 20px;
    }

    .btn-box a {
      font-size: 18px;
    }
  }