.offer-section {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    font-family: "Roboto", sans-serif;
    transition: all 0.5s ease;
  }

.section-heading {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    transition: all 0.5s ease;
  }

  
  .offer-section .container {
    display: flex;
    flex-wrap: nowrap; 
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.5s ease;
  }
  
  .offer-section-left-content {
    flex: 0 0 60%; 
    max-width: 60%;
    padding: 20px;
    transition: all 0.5s ease;
  }
  
  .offer-section-left-content h1 {
    font-size: 2.5rem;
    color: #333;
    transition: all 0.5s ease;
  }
  
  .offer-section-left-content h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 10px;
    transition: all 0.5s ease;
  }
  
  .offer-section-left-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    transition: all 0.5s ease;
  }
    
  
  .offer-section-left-content ul {
    list-style-type: disc;
    margin-left: 0px;
    color: #000;
    font-size: 1.5rem;
    line-height: 1.6;
    transition: all 0.5s ease;
  }
  
  .offer-section-right-content {
    flex: 0 0 40%; 
    max-width: 40%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
  }
  
  .offer-section-right-content img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }
  
  /* Media Queries */
  @media (min-width: 1024px) {
    .offer-section-right-content img {
      max-width: 100%; 
    }
  }
  
 
  @media (max-width: 1024px) {
    .offer-section {
      padding: 30px 15px;
    }
  
    .offer-section .container {
      flex-wrap: wrap; 
    }
  
    .offer-section-left-content,
    .offer-section-right-content {
      flex: 0 0 100%; 
      max-width: 100%;
      text-align: center;
    }
  
    .offer-section-right-content img {
      max-width: 100%; 
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    .offer-section {
      padding: 20px 10px;
    }
  
    .offer-section-left-content h1 {
      font-size: 2rem; 
    }
  
    .offer-section-left-content h2 {
      font-size: 1.8rem;
      margin-right: 2.7rem;
    }
  
    .offer-section-left-content p {
      font-size: 1.1rem;
    }
  
    .offer-section-left-content ul {
      font-size: 1.2rem;
      margin-right: 3rem;
    }
  
    .offer-section-right-content img {
      max-width: 90%; 
      height: auto;
      margin-right: 2.8rem;
    }
  }
 
  @media (max-width: 480px) {
    .offer-section {
      padding: 0px 5px;
      margin: 100px auto;
    }
  
    .offer-section-left-content h1 {
      font-size: 1.8rem;
    }
  
    .offer-section-left-content h2 {
      font-size: 1.2rem;
      margin-right: 3rem;
    }
  
    .offer-section-left-content p {
      font-size: 1rem;
    }
  
    .offer-section-left-content ul {
      font-size: 1rem;
      margin-right: 3rem;
    }
  
    .offer-section-right-content img {
        position: relative;
        object-fit: contain;

      width: 95%; 
      height: auto;
    }
  }
  