*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



  .product-section {
    width: 100%;
    height;
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
    padding-top: 80px;
  }

  .left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }

  .right h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .payment-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #CD2A30;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }

  /* RESPONSIVE TASARIM */
  @media (max-width: 992px) {
    .right h2 {
      font-size: 24px;
    }

    .right p, .payment-info {
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .product-section {
      flex-direction: column;
      height: auto;
      padding: 10px;
    }

    .left, .right {
      width: 100%;
      padding: 15px;
    }

    .left img {
      max-height: 300px;
    }

    .right h2 {
      font-size: 22px;
    }

    .right p, .payment-info {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .right h2 {
      font-size: 20px;
    }

    .right p, .payment-info {
      font-size: 13px;
    }
  }