.monogram-container {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .monogram {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 6rem;
    color: #f0d4d4;
    margin: 0;
    line-height: 1;
    position: relative;
    display: inline-block;
  }
  
  .monogram::before,
  .monogram::after {
    content: "•";
    font-size: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #e0b4b4;
  }
  
  .monogram::before {
    left: -2rem;
  }
  
  .monogram::after {
    right: -2rem;
  }
  
  .names {
    font-family: "Dancing Script", cursive;
    font-size: 3.5rem;
    color: #e0b4b4;
    margin: 0.5rem 0;
  }
  
  .decorative-line {
    width: 100px;
    height: 1px;
    background: #e0b4b4;
    margin: 1rem auto;
    position: relative;
  }
  
  .decorative-line::before,
  .decorative-line::after {
    content: "\2665";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #e0b4b4;
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;  /* System fonts for better symbol rendering */
  }
  
  .decorative-line::before {
    left: -20px;
  }
  
  .decorative-line::after {
    right: -20px;
  }