    .therapist-hero {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }
    .search-box {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }
    .search-box input {
        padding: 1rem 1rem 1rem 3rem;
        border-radius: 7px;
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        color: white;
        width: 100%;
    }
    .search-box input::placeholder {
        color: rgba(255,255,255,0.7);
    }
    .search-box input:focus {
        outline: none;
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.15);
    }
    .search-box i {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.7);
    }
    .filter-category {
        background: #f8f9fa;
        border-radius: 6px;
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .filter-category:hover, .filter-category.active {
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .filter-category.active {
        border-left: 4px solid #0f1f7a;
    }
    .therapist-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        overflow: hidden;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    .therapist-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    .therapist-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #0f1f7a;
    }
    .therapist-avatar-placeholder {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
    }
    .credential-badge {
        display: inline-block;
        background: linear-gradient(135deg, #e8f4fd 0%, #d4e5f7 100%);
        color: #0f1f7a;
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin: 0.25rem;
    }
    .specialty-tag {
        display: inline-block;
        background: #f8f9fa;
        color: #666;
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        margin: 0.25rem;
    }
    .availability-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    .availability-badge.available {
        background: #d4edda;
        color: #155724;
    }
    .availability-badge.busy {
        background: #fff3cd;
        color: #856404;
    }
    .availability-badge.unavailable {
        background: #f8d7da;
        color: #721c24;
    }
    .quick-info {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border-radius: 10px;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .no-therapists-card {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
    }
    .cta-section {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 3rem 2rem;
    }
    .asa-sidebar-sticky {
        top: 20px;
    }
    .asa-status-dot {
        font-size: 0.5rem;
    }
