/* How It Works Widget Styles */
.how-it-works-widget {
    padding: 80px 20px; 
    background: linear-gradient(135deg, #0F172B 0%, #1D293D 50%, #0F172B 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.how-it-works-widget .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Title Styling - Exact specifications */
.how-it-works-widget .title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 59.77px;
    line-height: 75px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    margin: 0 0 24px 0;
    padding: 0;
}

/* Description - Exact specifications */
.how-it-works-widget .description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 32.5px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #D1D5DC;
    margin: 0 0 80px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Layout */
.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
}

/* Step Icons - Circular background */
.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px auto;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border-radius: 50%;
    z-index: 1;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    stroke-width: 2;
}

.step:hover .step-icon {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}
h3.step-title{
     color: #ffffff;
}
/* Step Titles */
.step-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

/* Step Descriptions */
.step-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #D1D5DC;
    margin: 0;
}

/* CTA Button */
.how-it-works-cta {
    margin-top: 60px;
}
.how-it-works-cta> .cta-button {
    color: white;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    background: #4A5568;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px 32px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.cta-button:hover {
    background: #2D3748;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-it-works-widget {
        padding: 60px 16px;
    }
    
    .how-it-works-widget .title {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 20px;
    }
    
    .how-it-works-widget .description {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 60px;
    }
    
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .step-icon::before {
        width: 70px;
        height: 70px;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .step-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .step-description {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .how-it-works-widget .title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .how-it-works-widget .description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon::before {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
}