#examInfoModal .modal-body {
    padding: 2rem;
}

.exam-modal-layout .exam-modal-lead {
    font-size: 1.05rem;
    line-height: 1.6;
}

.exam-steps-card {
    background: #f8f9fa;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exam-step-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.exam-step-item:first-child {
    border-top: none;
}

.exam-step-icon {
    position: relative;
    padding-right: 0.75rem;
    flex: 0 0 auto;
}

.exam-step-icon::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    bottom: -1.5rem;
    left: 6px;
    width: 2px;
    background: #e1e4e8;
}

.exam-step-item:first-child .exam-step-icon::before {
    top: 0.5rem;
}

.exam-step-item:last-child .exam-step-icon::before {
    bottom: 0.5rem;
}

.exam-step-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 3px solid #9c1b23;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.exam-step-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.exam-step-text {
    margin-bottom: 0;
}

.exam-procedures-image {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #f1f3f5;
}

.exam-procedures-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exam-procedures-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exam-procedure-item {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.875rem;
    background: #fff;
    color: inherit;
    font-weight: 600;
    text-align: left;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.exam-procedure-item i {
    flex: 0 0 auto;
    font-size: 1.25rem;
}

.exam-procedure-item:hover,
.exam-procedure-item:focus-visible {
    color: #9c1b23;
    background: #fdf5f5;
    border-color: #9c1b23;
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .exam-procedures-image {
        height: 280px;
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .exam-steps-card {
        padding: 1.5rem;
    }

    .exam-procedure-item:hover,
    .exam-procedure-item:focus-visible {
        transform: none;
    }
}