/* ==========================================
   TOOLTIPS.CSS
   ========================================== */
.guide-section {
    margin-bottom: 2.5rem;
}

.guide-section h2 {
    margin-bottom: 1rem;
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.step-number {
    background: var(--color-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-text strong {
    color: white;
}