.ojs-wrapper {
    --primary-color: #6b3dbb; --primary-dark: #3e236e; --primary-light: #f5f0ff; --text-dark: #333333; --text-light: #666666; --transition-speed: 0.4s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-dark); line-height: 1.6;
}
.ojs-wrapper * { box-sizing: border-box; margin: 0; padding: 0; }
.ojs-wrapper .ojs-header { text-align: center; margin-bottom: 60px; }
.ojs-wrapper .ojs-main-title { font-size: 28px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.ojs-wrapper .ojs-main-subtitle { font-size: 18px; color: var(--text-light); max-width: 700px; margin: 0 auto; }
.ojs-wrapper .journey-stages { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-bottom: 40px; }
.ojs-wrapper .progress-line-bg { position: absolute; top: 40px; left: 10%; right: 10%; height: 4px; background: #ddd; border-radius: 2px; z-index: 1; }
.ojs-wrapper .progress-line-fill { position: absolute; top: 40px; left: 10%; width: 0; height: 4px; background: var(--primary-color); z-index: 2; transition: width 1s 0.5s ease-out; }
.ojs-wrapper .stage-card { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 3; cursor: pointer; opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.ojs-wrapper .stage-card.is-visible { opacity: 1; transform: translateY(0); }
.ojs-wrapper .stage-circle { width: 80px; height: 80px; background: white; border: 4px solid var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; transition: all var(--transition-speed); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.ojs-wrapper .stage-card:hover .stage-circle { transform: scale(1.1); box-shadow: 0 8px 25px rgba(107, 61, 187, 0.3); background: var(--primary-light); }
.ojs-wrapper .stage-number { position: absolute; top: -10px; right: -10px; width: 28px; height: 28px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; border: 3px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.ojs-wrapper .stage-icon { width: 32px; height: 32px; color: var(--primary-color); }
.ojs-wrapper .stage-title { font-size: 18px; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; }
.ojs-wrapper .stage-description { font-size: 14px; color: var(--text-light); line-height: 1.5; padding: 0 10px; }
.ojs-wrapper .stage-card:nth-child(2).is-visible { transition-delay: 0.1s; }
.ojs-wrapper .stage-card:nth-child(3).is-visible { transition-delay: 0.2s; }
.ojs-wrapper .stage-card:nth-child(4).is-visible { transition-delay: 0.3s; }
.ojs-wrapper .stage-card:nth-child(5).is-visible { transition-delay: 0.4s; }
.ojs-wrapper .stage-card:nth-child(6).is-visible { transition-delay: 0.5s; }
.ojs-wrapper .info-card-container { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out; }
.ojs-wrapper .info-card-container.show { max-height: 500px; margin-top: 40px; }
.ojs-wrapper .info-card { position: relative; background: var(--primary-light); border: 2px solid var(--primary-color); border-radius: 15px; padding: 30px; text-align: center; }
.ojs-wrapper .info-card-close { position: absolute; top: 10px; right: 15px; background: none; border: none; font-size: 28px; font-weight: bold; color: var(--primary-dark); cursor: pointer; line-height: 1; padding: 0; opacity: 0.7; transition: opacity 0.3s; }
.ojs-wrapper .info-card-close:hover { opacity: 1; }
.ojs-wrapper .info-card-title { font-size: 22px; color: var(--primary-dark); margin: 0 0 15px; }
.ojs-wrapper .info-card-description { font-size: 16px; color: var(--text-dark); max-width: 700px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 1024px) {
    .ojs-wrapper .journey-stages { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
    .ojs-wrapper .progress-line-bg, .ojs-wrapper .progress-line-fill { display: none; }
}
@media (max-width: 768px) {
    .ojs-wrapper .ojs-main-title { font-size: 24px; }
    .ojs-wrapper .ojs-main-subtitle { font-size: 16px; }
    .ojs-wrapper .journey-stages { grid-template-columns: 1fr; gap: 30px; }
    .ojs-wrapper .stage-card { max-width: 320px; margin: 0 auto; }
}