.anxiety-depression-hero {
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.anxiety-depression-hero .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.anxiety-depression-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.anxiety-depression-hero .container {
    z-index: 3;
}

.cta-hover-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cta-image-small {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.divider-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.vertical-divider {
    width: 1px;
    background-color: #8aada0;
    position: relative;
}

.vertical-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #8aada0;
    border-radius: 50%;

    
}

.nbf-tabs-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nbf-tabs-container h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.nbf-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: #00000021 0px 1px 3px 0px, #00000021 0px 1px 2px 0px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    background-color: #ffffff;
    overflow: hidden;
}

.nbf-nav-tabs li {
    flex: 1;
    min-width: 160px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.nbf-nav-tabs li:last-child {
    border-right: none;
}

.nbf-nav-tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    height: 100%;
    box-sizing: border-box;
}

.nbf-nav-tabs .nbf-arrow-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #8aada0;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-indent: 1px;
    flex-shrink: 0;
}

.nbf-nav-tabs li a:hover {
    background-color: #f5f5f5;
}


