/* How It Works Page Styles */
.hiw-container {
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hiw-header {
    text-align: center;
    margin-bottom: 50px;
}

.hiw-header h1 {
    font-size: 2.2em;
    font-weight: 800;
}

.hiw-steps {
    position: relative;
}

.hiw-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #eee;
    z-index: -1;
}

.hiw-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #0d47a1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

.step-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.4em;
    color: #111;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
}

.step-icon {
    font-size: 2.5em;
    color: #FFC107;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 600px) {
    .hiw-steps::before {
        left: 25px;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
    .hiw-step {
        gap: 15px;
    }
}
