.ib-steps-section {
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.wp-block-sig-steps-guide {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.ib-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ib-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ib-section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ib-section-subtitle {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ib-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.ib-step-card {
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ib-step-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
}

.ib-step-number {
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ib-step-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.ib-step-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ib-step-features {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.ib-step-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.ib-step-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
}

.ib-step-visual {
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ib-visual-placeholder {
    height: 150px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
}

.ib-step-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.ib-cta-section {
    text-align: center;
    margin-top: 60px;
}

.ib-cta-button {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.ib-cta-button:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .ib-steps-section {
        padding: 60px 20px;
    }
    
    .ib-section-title {
        font-size: 32px;
    }
    
    .ib-section-subtitle {
        font-size: 18px;
    }
    
    .ib-steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ib-step-card {
        padding: 30px;
    }
    
    .ib-step-title {
        font-size: 20px;
    }
}