.dual-color-subtitle {
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Add space between elements on desktop */
.dual-color-subtitle .white-title,
.dual-color-subtitle .black-title {
    margin-right: 10px;
}

.title-font {
  background: linear-gradient(to right, #EF25C7, #9D01FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  font-style: normal; 
}

.white-title {
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
}

.black-title {
  color: #21272A;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
}

/* Mobile styles */
@media (max-width: 767px) {
  .dual-color-subtitle {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .white-title, .black-title, .title-font {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.2;
    margin-right: 0;
  }
  
  .title-font {
    margin-top: 5px;
  }
}