
/* Container Wrappers */
.container-wrapper {
    margin: 10px 25px 0px 25px;
  }
  
  .container-inner {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .container-inner > div {
    width: 100%;
    padding: 3rem 1rem; /* 48px top/bottom, 16px left/right */
  }
  
  /* Typography */
  .section-title {
    font-size: 2.25rem; /* ~text-4xl */
    font-weight: bold;
    margin-bottom: 1.5rem; /* ~24px */
  }
  
  .section-paragraph {
    font-size: 1.25rem; /* ~text-xl */
    color: #4a5568; /* ~text-gray-700 */
    margin-bottom: 1rem;
  }
  
  .section-list {
    text-align: left;
    font-size: 1.125rem; /* ~text-lg */
    color: #4a5568;
    list-style-type: disc;
    padding-left: 1.25rem; /* ~list-inside mimic */
    margin-bottom: 1.5rem;
  }
  
  