/* Add Curve to Existing Sections */
.section-with-curve {
  position: relative;
  padding-bottom: 120px;
}

.section-with-curve::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: ellipse(100% 100% at 50% 100%);
  z-index: 2;
}

@media (max-width: 768px) {
  .section-with-curve {
    padding-bottom: 80px;
  }
  
  .section-with-curve::after {
    height: 60px;
  }
}