.subText {
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}

.sectionWrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.sectionContainer {
  width: 100%;
  background-color: #faf7ef;
  padding: 2rem 1.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  border-radius: 15px;
}

.categoryContainer {
  width: fit-content;
  height: fit-content;
}

.divider {
  margin: 0rem;
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #7e84f100, #1b429767, #7e84f100);
}

.categoryHeader {
  color: #1b4297;
  line-height: 1.1;
  font-family: "Gloock", serif;
  letter-spacing: 0.1rem;
}


.subHeader {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.mainHeader {
  color: #1b4297;
  font-family: "Gloock", serif;
  letter-spacing: 0.1rem;
}

.sectionSecondaryWrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 1rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.sectionSecondaryWrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;

  width: 3px;
  height: 70%;

  transform: translateY(-50%);

  border-radius: 999px;
  background: #1b4297;
  opacity: 0.9;
}

.primarySubHeader {
  font-size: 1.5rem;
}
