.ib-features-section {
    padding: 80px 20px;
}

/* Full width support - frontend only */
.ib-features-section.full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

/* Container */
.ib-features-section .ib-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

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

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

.ib-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.ib-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
}

.ib-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.ib-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.ib-feature-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* When icons are hidden, adjust spacing */
.ib-features-section:not(.show-icons) .ib-feature-card {
    padding-top: 30px;
}

@media (max-width: 1024px) {
    .ib-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .ib-section-title {
        font-size: 36px;
    }
    
    .ib-section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ib-features-section {
        padding: 60px 15px;
    }
    
    .ib-features-section .ib-container {
        padding: 0 15px;
    }
    
    .ib-section-header {
        margin-bottom: 40px;
    }
    
    .ib-section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .ib-section-subtitle {
        font-size: 16px;
    }
    
    .ib-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .ib-feature-card {
        padding: 30px 25px;
    }
    
    .ib-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .ib-feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .ib-feature-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ib-features-section {
        padding: 40px 10px;
    }
    
    .ib-features-section .ib-container {
        padding: 0 10px;
    }
    
    .ib-section-title {
        font-size: 24px;
    }
    
    .ib-section-subtitle {
        font-size: 15px;
    }
    
    .ib-feature-card {
        padding: 25px 20px;
    }
    
    .ib-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .ib-feature-title {
        font-size: 18px;
    }
    
    .ib-feature-description {
        font-size: 14px;
    }
}