/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #F6F3F2;
}

.steps-container {
    max-width: 800px;
    margin: 4rem auto;
}

.step {
    display: flex;
    flex-direction: column; /* Stack number above content */
    align-items: center; /* Center items horizontally */
    margin-bottom: 3rem;
    position: relative;
    text-align: center; /* Center text within content */
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0; /* Remove right margin */
    margin-bottom: 1rem; /* Add bottom margin to separate from text */
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;\n    color: var(--text-color);
}

.step-content p {
    color: var(--light-text);
    line-height: 1.6;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: var(--text-color);
}

.check {
    font-size: 1.25rem;
}

.setup-guide-cta {
    text-align: center;
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 0;
    }
    
    .step {
        /* These styles are now applied globally */
        /* flex-direction: column; */
        /* align-items: center; */
        /* text-align: center; */
    }
    
    .step-number {
         /* These styles are now applied globally */
        /* margin-right: 0; */
        /* margin-bottom: 1rem; */
    }
    
    .benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        display: none; /* Hide benefits list on mobile */
    }
} 