.card-psiholog{
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 2rem;
        padding: 2.5rem 2.2rem 2.2rem;
        border: 1px solid rgba(0, 72, 153, 0.08);
        transition: all 0.2s;
        color: #212529;
        line-height: 1.65;
        margin-bottom: 50px;
    }

    .card-target{
        width: 100%;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 2rem;
        padding: 2.5rem 2.2rem 2.2rem;
        color: #212529;
        line-height: 1.65;
    }

    .card-title {
        font-weight: 600;
        color: var(--nsmu-primary-dark);
        margin-bottom: 1.2rem;
        padding-left: 1rem;
    }

    .card-text {
        color: var(--nsmu-grey-1);
        margin-bottom: 1rem;
        text-indent: 1.8rem;
    }


    .highlight-box {
       background:var(--nsmu-light-blue-3);
        border-radius: 1rem;
        padding: 1.1rem 1.3rem;
        margin: 1.4rem 0 1.8rem;
        text-align: center;
        font-weight: 500;
        color: var(--nsmu-primary-dark);
    }

    .highlight-box strong {
        color: var(--nsmu-primary);
        font-weight: 700;
    }



    .psychologist-list {
        list-style: none;
        padding: 0;
        margin: 0.6rem 0 1.4rem;
    }

    .psychologist-item {
        background:var(--nsmu-light-blue-3);
        border-radius: 0.9rem;
        padding: 1rem 1.2rem;
        margin-bottom: 0.7rem;
    }

    .psychologist-item strong {
        color: var(--nsmu-primary-dark);
    }


    .schedule-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.6rem;
    }

    .schedule-chip {
        background: var(--nsmu-light-blue-3);
        border-radius: 2rem;
        padding: 0.4rem 1.1rem;
        color: var(--nsmu-primary-dark);
        font-weight: 500;
        border: 1px solid var(--nsmu-light-blue-3);
    }

    .greeting {
        font-weight: 500;
        color: var(--nsmu-primary-dark);
        margin-bottom: 0.5rem;
    }

    .instruction-text {
        color: var(--nsmu-grey-1);
        margin-bottom: 1.4rem;
        line-height: 1.5;
    }


    .privacy-note {
        background-color: #f9fcff;
        border-radius: 1rem;
        padding: 1rem 1.2rem;
        margin: 1.2rem 0 1.5rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        color: var(--nsmu-primary-dark);
        border: 1px solid var(--nsmu-light-blue-3);
        background: linear-gradient(to right, #ffffff, #f8fbff);
    }


    .contact-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        background: #f9fafc;
        border-radius: 1.2rem;
        padding: 1.1rem 1.4rem;
        margin: 1.4rem 0 1rem;
        border: 1px solid #edf2f9;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .contact-label {
        font-weight: 500;
        color: var(--nsmu-grey-2);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .phone-number {
        color: var(--nsmu-primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .phone-number:hover {
        color: var(--nsmu-secondary);
        text-decoration: underline;
    }

    .room-tag {
        color: var(--nsmu-primary);
        border-radius: 2rem;
        font-weight: 600;
    }

    .separator {
        width: 1px;
        height: 28px;
        background: var(--nsmu-grey-3);
        opacity: 0.5;
    }

 

    .extra-contacts {
        background:var(--nsmu-light-blue-3);
        border-radius: 1rem;
        padding: 1.1rem 1.3rem;
        margin: 1.2rem 0 1rem;
        border: 1px solid var(--nsmu-light-blue-3);
    }

    .extra-contacts p {
        margin-bottom: 0.4rem;
    }

    .extra-contacts strong {
        color: var(--nsmu-primary-dark);
        font-weight: 600;
    }


    .privacy-note {
        border-radius: 1rem;
        padding: 1rem 1.2rem;
        margin: 1.2rem 0 1.5rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        color: var(--nsmu-primary-dark);
        border: 3px solid var(--nsmu-light-blue-3);
    }


    @media (max-width: 500px) {
        .card {
            padding: 1.5rem 1.25rem;
        }
        .schedule-row {
            gap: 0.4rem;
        }
        .schedule-chip {
            font-size: 0.8rem;
            padding: 0.3rem 0.8rem;
        }
    }