body {
    background: -webkit-linear-gradient(rgba(228, 228, 228, 0.95), rgba(228, 228, 228, 0.95)), url(../img/dome.jpg) no-repeat top center;
    background: linear-gradient(
      rgba(228, 228, 228, 0.95), 
      rgba(228, 228, 228, 0.95)
    ), url(../img/dome.jpg) no-repeat top center;
    background-size: cover;
}

#content-container {
    padding-top: 80px;
    color: #333333;
}

/* ========== Rating Process Card Layout ========== */
.rp-cards-container {
    padding: 10px 0 20px;
}

/* Legend */
.rp-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.rp-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
}

.rp-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.rp-dot-client { background: #357EB2; }
.rp-dot-vis { background: #1a4d7a; }

/* Section headers */
.rp-section-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 14px;
}

.rp-badge {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rp-badge-client {
    background: #e8f0f8;
    color: #357EB2;
    border: 2px solid #357EB2;
}

.rp-badge-vis {
    background: #357EB2;
    color: #fff;
    border: 2px solid #357EB2;
}

.rp-line {
    flex: 1;
    height: 2px;
    border-radius: 1px;
}

.rp-line-client { background: #357EB2; opacity: 0.25; }
.rp-line-vis { background: #357EB2; opacity: 0.4; }

/* Step rows */
.rp-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.rp-num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(53, 126, 178, 0.25);
    z-index: 2;
}

.rp-num-client { background: linear-gradient(135deg, #357EB2, #2a648c); }
.rp-num-vis { background: linear-gradient(135deg, #1a4d7a, #153d5e); }

.rp-step-body {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 38px;
}

.rp-card {
    background: linear-gradient(180deg, #fff, #f7f9fb);
    border-radius: 10px;
    padding: 14px 20px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid transparent;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #2c3e50;
}

.rp-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.rp-card-client { border-left-color: #357EB2; }
.rp-card-vis { border-left-color: #1a4d7a; }

/* Connector line between steps */
.rp-conn {
    display: flex;
    gap: 16px;
    padding-left: 0;
}

.rp-conn-line {
    width: 38px;
    min-width: 38px;
    display: flex;
    justify-content: center;
    position: relative;
    height: 8px;
}

.rp-conn-line::before {
    content: '';
    width: 2.5px;
    height: 100%;
    background: #357EB2;
    opacity: 0.25;
    border-radius: 2px;
}

/* Duration markers */
.rp-duration {
    text-align: center;
    padding: 18px;
    color: #357EB2;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Bottom accent bar */
.rp-bottom-accent {
    height: 4px;
    background: linear-gradient(90deg, #357EB2, #1a4d7a);
    border-radius: 3px;
    margin-top: 20px;
}

/* ========== Responsive ========== */
@media screen and (max-width: 600px) {
    .rp-card {
        padding: 12px 14px;
        font-size: 14px;
    }
    .rp-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    .rp-conn-line {
        width: 32px;
        min-width: 32px;
    }
    .rp-legend { gap: 16px; }
}
