.profile-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
}

#profile-section h2 {
  /*
  font-size: 1.8rem;
  font-weight: 600;
  color: #891915;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #891915;
  padding-bottom: 10px;*/
    color: var(--portalThemeOnColor13);
    border-bottom: 1px solid #891915;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}

#profile-section p {
  font-size: var(--opt-font-size);
  line-height: 1.6;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 6px;
}

#profile-section strong {
  
  font-weight: var(--opd-font-bold);
  font-family: var(--opd-font-family);
  min-width: 240px;
}

#profile-section span {
  flex: 1;
  text-align: right;
  color: #444;
}

#profile-section p:last-child {
  border-bottom: none;
}

@media (max-width: 600px) {
  #profile-section {
    padding: 20px;
  }
  #profile-section p {
    flex-direction: column;
    align-items: flex-start;
  }
  #profile-section span {
    text-align: left;
  }
}