:root {
    --brand-color-1: #e91e63;   /* Or whatever your brand pink is */
    --brand-color-2: #ff4081;   /* Lighter/different pink */
    --text-color-secondary: #333;
    --white: #fff;
  }/* Logo styles */
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-color-1); /* Replace with a hex or specific color if not using CSS variables */
    position: relative;
    z-index: 200;
  }

  .logo::before {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--brand-color-1), var(--brand-color-2)); /* Gradient colors */
    border-radius: 8px;
    left: -0.5rem;
    top: 0.1rem;
    z-index: -1;
    opacity: 0.2;
    transform: rotate(15deg);
  }