.prestation-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.prestation-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.prestation-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(7, 85, 165, .08);
    color: #0755A5;
    font-size: 1.2rem;
}

.prestation-info-card h6 {
    margin-bottom: .45rem;
    font-weight: 700;
}

.prestation-list {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.prestation-list li {
    margin-bottom: .35rem;
    color: #555;
}

.prestation-list li:last-child {
    margin-bottom: 0;
}

.prestation-media {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
}