/* Step Duration */
.cs-step-duration {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Step Benefits */
.cs-step-benefits {
    margin-top: 1rem;
}

.cs-step-benefit {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-step-benefit:last-child {
    margin-bottom: 0;
}

/* Vertical Layout for Steps */
.cs-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cs-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.cs-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
}

.cs-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cs-step-content {
    flex: 1;
}

.cs-step-icon {
    display: none; /* Hide the icon in vertical layout */
}

.cs-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .cs-step-duration {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .cs-step-benefit {
        font-size: 0.8rem;
    }
    
    .cs-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cs-step-number {
        align-self: center;
    }
} 