.care-team {
    font-family: Inter, sans-serif;
    color: var(--Wood, #433C3A);
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(67, 60, 58, 0.3);
    padding-bottom: 50px;
}

.care-team__highlight {
    padding: 20px 0 20px 15px;
    border-radius: 0 6px 6px 0;
    border-left: 3px solid #5D766B;
    background: linear-gradient(
            90deg,
            rgba(93, 118, 107, 0.10) 50%,
            rgba(93, 118, 107, 0.00) 100%
    );
    margin-bottom: 20px;
}

.care-team__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 12px;
}

.care-team__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.care-team__subtitle{
    margin-block-end: 0;
}
.care-team__question {
    width: fit-content;
    font-size: 14px;
    line-height: 150%;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    cursor: pointer;
}

.care-team__btn {
    width: 100%;
    height: 44px;
    padding: 16px 30px 15px 30px;
    background: #5D766B;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.care-team__details {
    display: none;
    margin-bottom: 30px;
    background: rgba(93, 118, 107, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.care-team__details.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.care-team__module {
    margin-bottom: 20px;
}

.care-team__module h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #5D766B;
}

.care-team__module ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-team__module li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 1px solid rgba(93, 118, 107, 0.15);
    padding: 4px 0;
}

.care-team__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.care-team__collapse {
    text-align: center;
    color: #5D766B;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

@media (min-width: 768px) {
    .care-team__question,
    .care-team__details {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .care-team {
        margin-bottom: 30px;
    }
}
