* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Cormorant Garamond', serif;
  background-color: #e0eeee;
  overflow-x: hidden;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 550;
  margin-top: 25px;
  margin-bottom: 10px;
}

.section-divider {
  border: none;
  border-top: 1px solid #cccccc; /* light neutral gray */
  margin: 15px 0;
}


h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 550;
  margin-top: 25px;
  margin-bottom: 10px;
  margin-left: 20px
}


ps {

    margin-bottom: 15px;
  padding-left: 20px;
font-family: 'Cormorant Garamond', serif;
}

.page-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  min-height: 100%;
}

.inner-container {
  background-color: white;
  width: 100%;
  max-width: 850px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

#header {
  height: 50px;
  font-size: 22px;
  background-color: #ffcccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-weight: bold;
  margin-bottom: 10px;
}

.head {
  font-size: 17px;
  font-weight: 550;
  margin-top: 20px;
  margin-bottom: 5px;
}

ul {
  margin-bottom: 15px;
  padding-left: 20px;
font-family: 'Cormorant Garamond', serif;
}

li {
  margin-bottom: 5px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid black;
  padding: 5px;
  text-align: left;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  #header {
    font-size: 18px;
  }

  .head {
    font-size: 15px;
  }

  .inner-container {
    padding: 15px;
  }
}

.section-line {
  display: flex;
  align-items: center;
  margin: 30px 0 20px;
  position: relative;
}

.section-line::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ccc; /* light gray line */
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
}

.section-line h2 {
  margin: 0;
  padding-right: 10px;
  background-color: white; /* Matches your container bg */
  font-size: 18px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  text-align: left;
  margin: 40px 0 20px;
  padding-left: 10px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #bbb; /* neutral gray */
  z-index: 0;
}

.section-heading span {
  background-color: white; /* Match your container background */
  position: relative;
  padding: 0 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  z-index: 1;
}

.profile-summary {
  margin-bottom: 15px;
  padding-left: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

