/* Timeline-style return process */
.return-steps { margin: 24px 0; }
.return-step {
    display: flex; gap: 20px; padding: 20px 0;
    border-left: 2px solid var(--gray-100);
    margin-left: 20px; padding-left: 28px;
    position: relative;
}
.return-step::before {
    content: attr(data-step);
    position: absolute; left: -16px;
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-weight: 700; font-size: 0.8rem;
}
.return-step-content h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.return-step-content p { margin-bottom: 0; }

.highlight-box {
    background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.1));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}
.highlight-box p { margin-bottom: 0; }
