/* Get Started Page Styles */

.onboarding-steps {
    margin: 2rem 0;
    padding: 0;
}

.onboarding-steps-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.onboarding-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-content p {
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.step-content strong {
    color: var(--primary);
    font-weight: 600;
}

.onboarding-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.onboarding-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .onboarding-title {
        font-size: 2rem;
        font-family: 'Inter', sans-serif;
    }
    
    .onboarding-step {
        padding: 0.5rem 0;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

