PhpOffice / PhpWord库内容跳转到第二页问题

Hello guys I am trying to make a report document using phpWord lib and I am facing a problem, the problem is whenever I add a new section to put some content in, the content jumps to the second page, Notice: I just added 3 sections and everything is working fine but after the third section the content begins to jump to the second page.

  `$phpWord = new \PhpOffice\PhpWord\PhpWord();
// text align object
$textAlign = new \PhpOffice\PhpWord\SimpleType\TextAlignment();
// Adding an empty Section to the document...
$headerSection = $phpWord->addSection();
// adding header image...
$headerImageSource = "http://www.images.com/media/repLogo";
$header = $headerSection->addHeader();
$header->addImage($headerImageSource, array('width' => 250, 'height'=> 50, 'marginTop'=> -1, 'marginLeft'=> -1, 'wrappingStyle'=> 'behind', 'align'=> 'center'));
//Date Section...
$date= date("F jS, Y", time());
$dateSection = $phpWord->addSection();
$dateSection->addText('Date: '.$date, array('name'=> 'Arial', 'size'=> '11'), ['align'=> $textAlign ::CENTER]);
// patient information section (patient table)
$patientSection = $phpWord->addSection();
$tableStyle = array(
    'cellMargin'  => 50
);
$textStyle =  array('name'=> 'Arial', 'size'=> '10');
$table = $patientSection->addTable($tableStyle);
//creatTableRowsAndCells($table, 2, 3, 3000); // cell size unit is twip so 3000 twip is equal to 20 pixles (1 twip equal 0.0666666667 pixels )..
$table->addRow();
$table->addCell(3000)->addText('Patient Name: '.$patientName, $textStyle);
$table->addCell(3000)->addText('DOB: '.$DOB, $textStyle);
$table->addCell(3000)->addText('Gender: '.$gender, $textStyle);
//
//$table->addRow();
//if($ScanC != 'None'){
//    $table->addCell(3000)->addText('Scaning Center: '.$ScanC, $textStyle);
//}
//else if ($ReffDoc != 'None'){
//    $table->addCell(3000)->addText('Referring Doctor: '.$ReffDoc, $textStyle);
//}
$table->addRow();
$table->addCell(3000)->addText('Referring Doctor: '.$ReffDoc, $textStyle);
$table->addCell(3000)->addText('Date of Scan: '.$dateOfScan, $textStyle);
$table->addCell(3000)->addText('');
// Report Details Section
$reportDetailsSection = $phpWord->addSection();
$text = $reportDetailsSection->addText("Images provided: ");`

Screenshot for the generated word document