/* Comparison Section Enhancements */
.comparison-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    background-color: #212529;
    color: white;
}

.comparison-cell.fatoorix {
    background-color: #f0f4ff;
}

.comparison-cell .highlight {
    color: #4f46e5;
    font-weight: 700;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: flex;
    background-color: #212529;
    color: white;
    font-weight: 700;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell, .comparison-feature {
    padding: 16px 20px;
    flex: 1;
}

.comparison-feature {
    font-weight: 600;
    background-color: #f8f9fa;
    flex: 1.5;
}

.comparison-cell.feature-name {
    flex: 1.5;
}

.comparison-cell.fatoorix {
    background-color: #f0f4ff;
}

.comparison-cell .highlight {
    color: #4f46e5;
    font-weight: 700;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-header, .comparison-row {
        flex-direction: column;
    }
    
    .comparison-cell, .comparison-feature {
        padding: 12px 16px;
    }
    
    .comparison-cell.fatoorix {
        border-left: 4px solid #4f46e5;
    }
    
    .comparison-cell.traditional {
        border-bottom: 1px solid #e9ecef;
    }
    
    .comparison-row:last-child .comparison-cell.traditional {
        border-bottom: none;
    }
}
