<style>
  .freshplan-calculator-container {
    position: relative;
    height: 800px; /* Set the container height to show only the visible portion */
    overflow: hidden; /* Hide the parts that are outside the container */
  }

  .freshplan-calculator-container iframe {
    width: 100%;
    height: 1800px; /* This is the full height of the iframe (you can adjust as needed) */
    border: none;
    clip-path: inset(270px 0 0 0); /* Crop 227px (3 inches) from the top */
    transform: translateY(-250px); /* Move the iframe up by 227px to remove the white gap */
  }
</style>