.fancydivider {
  text-align: center;
  margin: 0 0;
  position: relative;
  overflow: visible;
}

.fancydivider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px; /* Thicker line */
  background: linear-gradient(
    to right, 
    transparent 0%, 
    #8a6d62 20%, 
    #d4a373 50%, 
    #8a6d62 80%, 
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 4px; /* Soft edges */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle depth */
}

/* Optional decorative element */
.divider-content {
  position: relative;
  display: inline-block;
  padding: 0 0;
  background: white; /* Match your page background */
  color: #8a6d62;
  font-size: 24px;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Hover effect for extra appeal */
.fancydivider:hover::before {
  height: 5px;
  background: linear-gradient(
    to right, 
    transparent 0%, 
    #9c7c6f 20%, 
    #e0b280 50%, 
    #9c7c6f 80%, 
    transparent 100%
  );
  transition: all 0.3s ease;
}
