.divider-container {
  position: relative;
  margin: 40px 0;       /* Adjust vertical spacing as needed */
  height: 1px;
}

.divider-base {
  width: 100%;
  height: 1px;
  background-color: #ddd;  /* Base line color */
}

.divider-accent {
  position: absolute;
  top: -1px;               /* Adjust to align with base line */
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;                /* Start at 0 width */
  background-color: #CE2029;  /* Accent line color (red) */
}
