.custom-curved-section {
    position: relative;
    background: white;
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
    padding: 50px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}


.scrollable-text {
  max-height: 220px;  /* adjust height to fit ~5–6 rows */
  overflow-y: auto;   /* vertical scroll */
  padding: 10px;
  border: 0px solid #ddd;  /* optional */
  border-radius: 6px;      /* optional */
}
.scrollable-text::-webkit-scrollbar {
  width: 6px;  /* thin scrollbar */
}
.scrollable-text::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 4px;
}
.scrollable-text::-webkit-scrollbar-thumb:hover {
  background: #555;
}