
  .first-banner{
    font-family: 'Poppins', sans-serif;
    background: #666;
    padding: 20px;
    display: flex;
    justify-content: center;
  }

  .banner {
    background: white;
    width: 90%;
    max-width: 1100px;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: relative;
  }

  .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ddd;
    color: #333;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
  }

  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .text-section {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
  }

  .text-section h1 {
    font-size: 50px;
    font-weight: 800;
    color: #000;
  }

  .text-section h1 span {
    color: orange;
  }

  .text-section .sub {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
  }

  .discount-box {
    margin: 15px 0;
    color: #f60;
    font-size: 22px;
    font-weight: bold;
  }

  .text-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }

  .text-section .btn {
    background: #000;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
  }

  .image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    min-width: 300px;
  }

  .image-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 150px;
  }

  @media (max-width: 768px) {
    .content {
      flex-direction: column;
    }

    .text-section {
      padding-right: 0;
      text-align: center;
      margin-bottom: 20px;
    }

    .image-grid {
      width: 100%;
    }
  }