/* How It Works Section CSS */

.how-it-works-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.how-it-works-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

.how-it-works-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1425px;
    margin: 0 auto;
    padding-top: 40px;
}

.steps-line {
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #E5E7EB;
    z-index: 1;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFCC00;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-item:hover .icon-circle {
    background: #FFCC001A;
    transform: translateY(-5px);
}

.icon-circle i {
    font-size: 36px;
    color: #000000;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .steps-line {
        display: none;
    }
    
    .how-it-works-steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .step-item {
        width: 100%;
    }
}
