/* How It Works Page Specific Styles */

.detailed-steps {
    padding: 100px 0;
    background-color: var(--white);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.step-item.reverse {
    flex-direction: row-reverse;
}

.step-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 200px;
    height: 200px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper i {
    font-size: 60px;
    color: var(--primary-color);
}

.step-icon-wrapper .step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border: 4px solid var(--white);
}

.step-text h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.we-handle {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.we-handle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.handle-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.handle-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.handle-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.handle-item p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .step-item, .step-item.reverse {
        flex-direction: column;
        text-align: center;
    }
}