.redirect-step {
    margin-bottom: 2rem;
    position: relative;
}

.redirect-step-header {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.75rem;
    cursor: pointer;
}

.redirect-step-header:hover {
    background-color: #e9ecef;
}

.redirect-step-body {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.redirect-arrow {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.headers-container {
    max-height: 200px;
    overflow-y: auto;
}

.check-list {
    list-style-type: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.status-list {
    list-style-type: none;
    padding-left: 0;
}

.status-list li {
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
} 