.hcp-hero-gradient {
    background:
        /* url('../images/hcp/fembloc-hcp-hero.png') no-repeat top / cover, */
        linear-gradient(140deg, 
            #160C53 8%, 
            #5C50A1 51%, 
            #61B7BD 75%, 
            #5FCD79 96%
        );
    font-family: 'Montserrat', sans-serif;
    border: none !important;
    text-shadow: 1px 1px gray;
    margin-top: -100px;
}

.hcp-hero-gradient-mobile {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px gray;
    margin-top: -100px;
    padding-top: 130px;
    padding-bottom: 20px;
    overflow: hidden;
}

.hcp-hero-gradient-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../images/hcp/fembloc-hcp-hero.png') no-repeat center / cover;
    filter: blur(0.5px);
    z-index: -2;
}

.hcp-hero-gradient-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(140deg, 
        rgba(22, 12, 83, 0.85) 8%, 
        rgba(92, 80, 161, 0.85) 51%, 
        rgba(97, 183, 189, 0.85) 75%, 
        rgba(95, 205, 121, 0.85) 96%
    );
    z-index: -1;
}

.hero-heading {
    font-size: 2rem;
}

@media (min-width: 1620px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: inherit !important;
    }
}

/* Clinical Data Section Styles */
.references {
    color: #666;
}

.purple.fw-bold {
    letter-spacing: 0.5px;
}

.list-unstyled li::before {
    content: '•';
    color: var(--primary-purple);
    font-weight: bold;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Consider Section Cards */
.icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    min-height: 200px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.about-reason-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Custom active nav link style for HCP site */
.navbar .nav-link.active {
  color: #7C3A96 !important; /* Purple for HCP site */
  font-weight: bold;
  text-decoration: underline;
}